1. Computing & Technology

Discuss in my forum

GoTo

By , About.com Guide

See More About:
Definition: You can use GoTo to skip over a section of code and go to the specified location. This only became available in PHP 5.3 so if it does not work for you, please check your PHP version. As this is not a function you don't need parenthesis ().
Also Known As: Go To
Examples:
<?php 
 goto a;
 echo 'Hello';
 
 a:
 echo 'Goodbye';
 ?>
This would only output Goodbye.
Related Searches php version php 5 lt

©2012 About.com. All rights reserved.

A part of The New York Times Company.