超越PHP PHP动态 | 经典文章 | CLASS | 相关下载 | 常见问题 | FORUM | WIKI | 在线手册
Site search:    
<Static Keyword抽象类>
Last updated: Fri, 22 Jun 2007



add a note add a note User Contributed Notes
Object Constants
Alexandre Gravem
21-Sep-2004 09:38
I don't know how pratical is it, but you can make a class to use like a namespace to constants:
<?php
static class Booleans {
 const On = true;
 const Off = false;
 const Yes = true;
 const No  = false;
}

if ($answer == Booleans::Yes) {
 //do something
}
?>

<Static Keyword抽象类>
 Last updated: Fri, 22 Jun 2007
view source | feedback | send page | sitemap | aboutus   
Copyright ® 2002-2003 PHPE.NET. All rights reserved
Last updated:2002-11-22