我有这个奇怪的问题。
如果我通过 amfphp 服务浏览器调用该函数并为其提供有效 ID 并将该$num_images
字段留空,amfphp 实际上将传递一个空白字符串作为参数。
// if i call this function width just an ID
function getWorkers($id, $num_images = 100) {
...
// num_images will be set as ''
}
我可以使用检查轻松覆盖:
function getWorkers($id, $num_images = 100) {
if($num_images=='') $num_images = 100;
...
// num_images will now be really set as 100
}
有人对 amfphp 有同样的经历吗?