functionaa(
$str
)$function
="aa"
;$function
('hello'
);// or
call_user_func
($function
,$param
);
2. 列出所有函式,判斷某個函式是否存在
get_defined_functions
()function_exist
()
3. 接受 put 請求,php rest 必備
parse_str
(file_get_contents
('php://input'
),$put_vars
);
4. 從字串解析時間
echo date
('y-m-d'
,strtotime
('-1 month ago'
));
5. debug 檢視呼叫 backtrace
$backtrace
=debug_backtrace
();var_export
($backtrace[0
])die
();
6. 互動式命令列,命令列執行 php
php -a 和 php -r 『echo 「hello」;』
更多請看 php -h
7. 記憶體使用檢測
memory_get_peak_usage
()memory_get_usage
()
一些常用的php函式
這是一些使用頻率比較高的函式,有的來自別人的程式.1.產生隨機字串函式 function random length return hash 2.擷取一定長度的字串 注 該函式對gb2312使用有效 function wordscut string,length sss 0 for i 0 i le...
PHP7的一些特性用法
1.use的用法 php 7 之前版本用法 use some namespace classa use some namespace classb use some namespace classc as c use function some namespace fn a use function...
python 的一些特性
class student object say this is a student class def init self,name,age 構造器 self.name name self.age age classmethod 類方法 def showclassmethod cls print ...