Now in trunk: Improved interactive shell
Trackbacks
Jason, you're doing it wrong!
In a few previous blog posts I was already talking about changes in PHP's trunk, like some BC break or some new features, time to continue: JSON is the modern data format used in "AJAX" applications. As the leading language for the Web PHP cou
In a few previous blog posts I was already talking about changes in PHP's trunk, like some BC break or some new features, time to continue: JSON is the modern data format used in "AJAX" applications. As the leading language for the Web PHP cou
Weblog: Johannes Schlüter
Tracked: Jun 03, 19:03
Tracked: Jun 03, 19:03
PHP 5.4 Alpha 1
Recently PHP 5.4.0 Alpha 1 was released and the PHP development team is asking every PHP user to test it. In this blog I have some articles about upcoming features in that version. Now is a good time to test 5.4 in combination with your applications spot
Recently PHP 5.4.0 Alpha 1 was released and the PHP development team is asking every PHP user to test it. In this blog I have some articles about upcoming features in that version. Now is a good time to test 5.4 in combination with your applications spot
Weblog: Johannes Schlüter
Tracked: Jul 02, 02:24
Tracked: Jul 02, 02:24
Friday, May 28. 2010 at 22:51
my big congrats to you for this great contribution
Saturday, May 29. 2010 at 13:44 (Link)
Monday, May 31. 2010 at 16:26
any plans to support
a) autoloading
b) auto-echoing the value of last expression? As in:
php > 2 + 2;
4
php > $name = 'Jane';
Jane
php > $msg = "Welcome, $name";
Welcome, Jane
Monday, May 31. 2010 at 17:20 (Link)
Tuesday, June 1. 2010 at 16:16 (Link)
Wednesday, June 2. 2010 at 01:41
php > var_dump(new foo());
string(3) "foo"
object(foo)#1 (0) {
}
seems to work, or what am I missing?
Tuesday, June 8. 2010 at 10:20