Topic: [PHP] Is there a statemnt like WITH in pascal
In pascal/Delphi we use
obj1.prop1 := 10;
obj1.prop2 := 20;
or
with obj1 do
begin
prop1 := 10;
prop2 := 20;
end;
Is there any statment like WITH in php
If your people come crazy, you will not need to your mind any more.