PHP eval() 函數(shù)
PHP eval() 函數(shù)
實例
把字符串當(dāng)成 PHP 代碼來計算:
<?php
$string = "beautiful";
$time = "winter";
$str = 'This is a $string $time morning!';
echo $str. PHP_EOL;
eval("\$str = \"$str\";");
echo $str;
?>
以上代碼執(zhí)行輸出結(jié)果為:
This is a $string $time morning!
This is a beautiful winter morning!
This is a beautiful winter morning!
定義和用法
eval() 函數(shù)把字符串按照 PHP 代碼來計算。
該字符串必須是合法的 PHP 代碼,且必須以分號結(jié)尾。
注釋:return 語句會立即終止對字符串的計算。
提示:該函數(shù)對于在數(shù)據(jù)庫文本字段中供日后計算而進行的代碼存儲很有用。
語法
eval(phpcode)
參數(shù) | 描述 |
---|---|
phpcode | 必需。規(guī)定要計算的 PHP 代碼。 |
技術(shù)細(xì)節(jié)
返回值: | 除非在代碼字符串中調(diào)用 return 語句,則返回傳給 return 語句的值,否則返回 NULL。如果代碼字符串中存在解析錯誤,則 eval() 函數(shù)返回 FALSE。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)組排序
- PHP While 循環(huán)
- PHP 多維數(shù)組
- PHP 錯誤處理
- PHP 過濾器
- PHP array_fill() 函數(shù)
- PHP array_fill_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_reverse() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP natsort() 函數(shù)
- PHP reset() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Math 函數(shù)