Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前遇到了一个 php 函数的问题。我已经声明了一个函数:
function edit_content($array, $id = NULL){ //code }
where$array是传递给函数的数组,$id是可选的整数值。当我像这样调用函数时:
$array
$id
edit_content($content_array, 2);
该值2没有通过。
2
为什么值不会被传递?它与传递的数组有关吗?
毕竟问题不在于代码,而在于缓存。我在稍微更改 ajax 调用后忘记清理缓存,导致在不同条件下调用函数(其中 ID 没有传递,因为不需要它。
感谢您的帮助,很抱歉占用您的时间。祝你有美好的一天!