"Trailing commas in function and method calls are now allowed" means function parameters, example:<?phpfunction my1() { echo "xxxxxx\n";}function my2() { echo "yyyyyy\n";}my1(),my2(); // PHP Parse error: syntax errormy1(,); // PHP Parse error: syntax errormy1(1,); my2(2,); // OK?>