Quick actions

cmd+k|ctrl+k

Navigation

Languages

++ in php

Snippet info

Language

Php

Visibility

public

Author

zjmainstay

Created

2016-07-06T01:48:38Z

Updated

2016-07-06T02:02:44Z

<?php
function test(){
 $a=1;
 $b=&$a;
 echo (++$a)+(++$a)+(++$a);
}
test();
INFO