sam3737 Posted October 14, 2008 Share Posted October 14, 2008 Hi all I have moderate experience in PHP programming. I was wondering how I could convert my "global.inc" to class global{ }. Currently I am using include global.inc. However is it possible to move entire script into a class e.g global . Then how would be the class and member be defined to get the same functionality I achieve in include? global.inc <?php require_once 'myconfig.inc'; require 'sql.inc'; $start = false; . . . if (!function_exists('getEnum')) { function getEnum ($string) { return $string; } } ?> thanks Sam Quote Link to comment https://forums.phpfreaks.com/topic/128325-convert-php-code-snippets-to-objectclass/ Share on other sites More sharing options...
Daniel0 Posted October 14, 2008 Share Posted October 14, 2008 Well, yes. Just do class global { static public function getEnum($string) { return $string; } // etc. } echo global::getEnum($string); I assume this is sort of what you need. If that's the case then you might want to look into PHP 5.3.0's namespaces: http://php.net/namespaces Edit: Wait... global is a reserved keyword so you'll have to find another name. You could just use the plural, i.e. globals. Quote Link to comment https://forums.phpfreaks.com/topic/128325-convert-php-code-snippets-to-objectclass/#findComment-664777 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.