English 中文(简体)
如果说谎的话,就会使我的现场失去[封闭]。
原标题:if !empty statement crashes my site [closed]

我有以下情况:

<a href="#"
   title="<?php the_sub_field( points_description ); ?>"
   class="<?php if(!empty(the_sub_field( points_description ))) {
                  echo  point-tooltip ; } ?>">

如果我只包括网站显示的对应部分,但当我增加部分(如果功能为<代码>><<>>>>)时,网站仅显示空白。

任何建议?

问题回答

空闲只能与var一起工作。

空洞只能检查变数,因为任何其他因素都会造成 par误。 换言之,以下工作不会奏效:空(国名)。

http://php.net/manual/en/Function.empty.php>rel=“nofollow”>empty() 只有在具有变数的情况下才能工作,因为这一功能也是对功能的界定。

3. 使以下法典可执行

// doesn t work :(
if(!empty(a_function($var)))
    do_stuff();

页: 1

//works :D
$temp = a_function($var);
if(!empty($temp))
    do_stuff();




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签