當我在命令行下,使用php -rf is_array 的命令, 能夠打印出相關的is_array的信息, 但當我使用同樣的方式,想獲取isset函數,empty函數的相關信息, 卻顯示了isset函數不存在,empty函數不存在; 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請問,php -rf 能夠打印出哪類的函數呢? 謝謝了!
為什么php -rf <函數名>, 在有些php函數上卻找不到相關信息?
12345678_0001
2018-07-06 16:19:46