3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dbname = 'RPGDugEAOoSvpJcerHpc'; /*填入数据库连接信息*/ $host = 'sqld.duapp.com'; $port = 4050; $user = 'ISDddvTQAsC00NmHsOrCcqIL';//用户名(api key) $pwd = 'GMEWfs0973mqDGlgfsz7zVSnEQxqAePM';//密码(secret key) /*以上信息都可以在数据库详情页查找到*/ /*接着调用mysql_connect()连接服务器*/ $link = @mysql_connect("{$host}:{$port}",$user,$pwd,true); if(!$link) { die("Connect Server Failed: " . mysql_error()); } /*连接成功后立即调用mysql_select_db()选中需要连接的数据库*/ if(!mysql_select_db($dbname,$link)) { die("Select Database Failed: " . mysql_error($link)); } /*至此连接已完全建立,就可对当前数据库进行相应的操作了*/ /* Update records */ mysql_query("UPDATE message SET openid=1 WHERE id < 10"); printf ("Updated records: %d ", mysql_affected_rows()); mysql_query("COMMIT"); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function mysql_connect() in /in/qv5b0:11 Stack trace: #0 {main} thrown in /in/qv5b0 on line 11
Process exited with code 255.

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:
60.95 ms | 401 KiB | 8 Q