當(dāng)我在命令行下,使用php -rf is_array 的命令, 能夠打印出相關(guān)的is_array的信息, 但當(dāng)我使用同樣的方式,想獲取isset函數(shù),empty函數(shù)的相關(guān)信息, 卻顯示了isset函數(shù)不存在,empty函數(shù)不存在; C:\Users\longxiangde>php --rf is_arrayFunction [ <internal:standard> function is_array ] {
- Parameters [1] {
Parameter #0 [ <required> $var ]
}
}
C:\Users\longxiangde>php --rf emptyException: Function empty() does not exist
C:\Users\longxiangde>php --rf issetException: Function isset() does not exist請(qǐng)問,php -rf 能夠打印出哪類的函數(shù)呢? 謝謝了!
為什么php -rf <函數(shù)名>, 在有些php函數(shù)上卻找不到相關(guān)信息?
12345678_0001
2018-07-06 16:19:46