我想要找到数组中任何一个值的第一个匹配项。
$sentence = array(I, want, to, go, to, the, market);
if(in_array(array('swim','fly','go'), $sentence)) {
// Should return KEY = 3 as 'go' was found in the third key of the array
}
我相信这一定是很常见的,怎么做呢?
我使用wordpress插件,我注意到返回一个错误
$alias = (string)end(array_keys($settings));
上线.the错误为PHP Strict Standards: Only variables should be passed by reference in on wordpress function
我在下面添加了这个功能。任何人都知道如何解决这个错误,因为插件的管理仪表板没有因为这个错误而加载。
/*
* GET modules lists
*/
function load_
我知道PHP有很多用于数组的函数,但我不确定应该使用哪一个,或者是否需要自定义函数。
我有一个接受数组的函数,我需要这些数组作为参数传递才能有某些键。当传递数组时,我需要检查数组的形式是否正确,例如:
<?php function( $array ) {
// Array needs to have form Array('server'=>, 'database'=>,'username'=>
I could check it as "array_key_exists", but