3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function the_title() { return 'A Title';} function the_permalink() { return 'https://google.com';} function has_post_thumbnail() { return true;} function the_post_thumbnail($whateverThisIs) { return '<img src="https://upload.wikimedia.org/wikipedia/en/2/22/Charlie_Brown.png" />'; } function get_post_custom_values() { $key = 'Gal_IMG'; $value = 'https://en.wikipedia.org/wiki/Main_Page#/media/File:BepiColombo_spacecraft_model.png'; return 'https://en.wikipedia.org/wiki/Main_Page#/media/File:BepiColombo_spacecraft_model.png'; } $imgClass = 'no-img'; $img = ''; $title = the_title(); $link = the_permalink(); // $BG_Img = get_post_custom_values('GalIMG') ; if(has_post_thumbnail()) { $imgClass = ''; $img = the_post_thumbnail('alm-thumbnail'); } echo " <li class='${imgClass}'> ${img} <h3> <a href='${link}' style='background-image:url('${BG_Img}'); display:block;'>${title} </a> </h3> </li> ";
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/s7s9c on line 27 Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/s7s9c on line 28 Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/s7s9c on line 29 Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/s7s9c on line 31 Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /in/s7s9c on line 31 <li class=''> <img src="https://upload.wikimedia.org/wikipedia/en/2/22/Charlie_Brown.png" /> <h3> <a href='https://google.com' style='background-image:url('https://en.wikipedia.org/wiki/Main_Page#/media/File:BepiColombo_spacecraft_model.png'); display:block;'>A Title </a> </h3> </li>

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:
92.79 ms | 403 KiB | 8 Q