如果我们有一个 if 语句,例如
`<?php if($data[1][0][1] == "aaa" || $data[2][0][1] == "bbb" || $data[1][0][2] == "ccc" || $data[2][0][2] == "ddd")
{
$return_value = {the index array value being passed above};
echo "which portion in the if statement OR was actually passed? and return that value" . $return_value;
}?>`
我们能否准确找出在 OR if 语句中传递的实际值?