3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml_object['executeCustomReportResponse']['reportDetail']['header']['columnName'] = array("Apple","Banana", "Carrot"); $xml_object['executeCustomReportResponse']['reportDetail']['header']['columnName']['RandomFlag'] =True; echo("\nData Type: ".gettype ( $xml_object )); echo("\n"); foreach($xml_object['executeCustomReportResponse']['reportDetail']['header']['columnName'] as $value){ echo($value." "); } $get_column_name = $xml_object['executeCustomReportResponse']['reportDetail']['header']['columnName']; echo("\nData Type of copy ".gettype( $get_column_name )); echo("\n"); foreach($get_column_name as $value){ echo($value." "); } echo("\n"."************"."\n"); function getGroupNames($xml_response){ global $ajax_data; $index_of_title_column; $index_of_group_type_column; $columns_array = (array)$xml_response->executeCustomReportResponse->reportDetail->header->columnName; $index_of_title_column = array_search("Apple", $columns_array); $index_of_group_type_column = array_search("Carrot", $columns_array); echo($index_of_title_column."\n"); echo($index_of_group_type_column."\n"); } getGroupNames($xml_object) ?>
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.19, 8.3.0 - 8.3.7
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Warning: Attempt to read property "executeCustomReportResponse" on array in /in/GAmHK on line 23 Warning: Attempt to read property "reportDetail" on null in /in/GAmHK on line 23 Warning: Attempt to read property "header" on null in /in/GAmHK on line 23 Warning: Attempt to read property "columnName" on null in /in/GAmHK on line 23
Output for 7.2.0 - 7.2.33, 7.3.16 - 7.3.31, 7.4.0 - 7.4.33
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Notice: Trying to get property 'executeCustomReportResponse' of non-object in /in/GAmHK on line 23 Notice: Trying to get property 'reportDetail' of non-object in /in/GAmHK on line 23 Notice: Trying to get property 'header' of non-object in /in/GAmHK on line 23 Notice: Trying to get property 'columnName' of non-object in /in/GAmHK on line 23
Output for 7.3.32 - 7.3.33
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23
Output for 5.0.4 - 5.0.5
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Notice: Undefined variable: index_of_title_column in /in/GAmHK on line 21 Notice: Undefined variable: index_of_group_type_column in /in/GAmHK on line 22 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23
Output for 5.0.0 - 5.0.3
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Notice: Undefined variable: index_of_title_column in /in/GAmHK on line 21 Notice: Undefined variable: index_of_group_type_column in /in/GAmHK on line 22 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23 Notice: Trying to get property of non-object in /in/GAmHK on line 23
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9
Data Type: array Apple Banana Carrot 1 Data Type of copy array Apple Banana Carrot 1 ************ Notice: Undefined variable: index_of_title_column in /in/GAmHK on line 21 Notice: Undefined variable: index_of_group_type_column in /in/GAmHK on line 22

preferences:
208.83 ms | 402 KiB | 313 Q