3v4l.org

run code in 300+ PHP versions simultaneously
<?php function fetch_style_title_options_array() { //return array( // "Desktop" => 1, // "Mobile" => 2, // "Topify SEO" => 3); return array("Desktop","Mobile","Topify SEO"); } $HTTP_USER_AGENT = "aaaaaaGoogleBOTbbbbb"; //$_SERVER['HTTP_USER_AGENT'] $TOPIFY_SEO_STYLE = "Topify SEO"; //whatever we name our seo skin $SEO_AGENTS = "test1|Googlebot|test3"; if(in_array($TOPIFY_SEO_STYLE, fetch_style_title_options_array())) { if(preg_match('/('.$SEO_AGENTS.')/i', $HTTP_USER_AGENT, $match)) { echo "display seo skin"; } else { echo "do not display seo skin"; } } else { echo "topify seo not installed"; }
Output for git.master, git.master_jit, rfc.property-hooks
display seo skin

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.33 ms | 401 KiB | 8 Q