3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = simplexml_load_file('http://weather.yahooapis.com/forecastrss?w=868274&u=c'); $weatherInfo = $xml->channel->item->description; $imagePattern = '/src="(.*?)"/i'; preg_match($imagePattern, $weatherInfo, $matches); $imageSrc = $matches[1]; $degreesPattern = '/.*?, (-?\d+) C/i'; preg_match($degreesPattern, $weatherInfo, $matches); $degrees = $matches[1]; echo $degrees;
Output for git.master, git.master_jit
Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo for weather.yahooapis.com failed: System error in /in/qfSfE on line 2 Warning: simplexml_load_file(http://weather.yahooapis.com/forecastrss?w=868274&u=c): Failed to open stream: php_network_getaddresses: getaddrinfo for weather.yahooapis.com failed: System error in /in/qfSfE on line 2 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://weather.yahooapis.com/forecastrss?w=868274&u=c" in /in/qfSfE on line 2 Warning: Attempt to read property "channel" on bool in /in/qfSfE on line 3 Warning: Attempt to read property "item" on null in /in/qfSfE on line 3 Warning: Attempt to read property "description" on null in /in/qfSfE on line 3 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/qfSfE on line 5 Warning: Undefined array key 1 in /in/qfSfE on line 6 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/qfSfE on line 8 Warning: Undefined array key 1 in /in/qfSfE on line 9
Output for rfc.property-hooks
Warning: simplexml_load_file(): php_network_getaddresses: getaddrinfo for weather.yahooapis.com failed: System error in /in/qfSfE on line 2 Warning: simplexml_load_file(http://weather.yahooapis.com/forecastrss?w=868274&u=c): Failed to open stream: php_network_getaddresses: getaddrinfo for weather.yahooapis.com failed: System error in /in/qfSfE on line 2 Warning: simplexml_load_file(): I/O warning : failed to load external entity "http://weather.yahooapis.com/forecastrss?w=868274&u=c" in /in/qfSfE on line 2 Warning: Attempt to read property "channel" on false in /in/qfSfE on line 3 Warning: Attempt to read property "item" on null in /in/qfSfE on line 3 Warning: Attempt to read property "description" on null in /in/qfSfE on line 3 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/qfSfE on line 5 Warning: Undefined array key 1 in /in/qfSfE on line 6 Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /in/qfSfE on line 8 Warning: Undefined array key 1 in /in/qfSfE on line 9

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
41.88 ms | 403 KiB | 8 Q