FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » upgrade of php & split deprecated = HELP
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: upgrade of php & split deprecated = HELP [message #175026 is a reply to message #175024] Thu, 04 August 2011 09:15 Go to previous messageGo to previous message
tony is currently offline  tony
Messages: 19
Registered: December 2010
Karma:
Junior Member
In article <4e3a2249$0$2195$742ec2ed(at)news(dot)sonic(dot)net>,
horus <horus(at)sonic(dot)net> wrote:
> explode & preg_split produces:
> Undefined offset: 2 in /var/www/html/testing/blah/blah/aitoff.php on line
> 16, referer: httpd://blah.blah.blah/
> Undefined offset: 1 in /var/www/html/testing/blah/blah/aitoff.php on line
> 16, referer: httpd://blah.blah.blah/
>
> here's the code(i've tried the preg_split, & explode):

To use preg_split, you need to add pattern delimiters:

$foo = preg_split('/[\ :]/', $bar);

Without them, the [ and ] are acting as pattern delimiters, not as the
container for a character class.

Cheers
Tony

> <?php
> class AstronomicalObject{
> var $ra;
> var $dec;
> var $minBrightness;
> var $maxBrightness;
>
> function AstronomicalObject($raIn = "00:00:00.000",
> $decIn = "00:00:00.000", $maxBrightness = "0",
> $minBrightness = "30"){
> // Initiate varibles
> $this->ra = array("hours" => 0, "minutes" => 0, "seconds" =>
> 0);
> $this->dec = array("degrees" => 0, "minutes" => 0, "seconds"
> => 0);
>
> // convert strings to numbers
> list($this->ra["hours"], $this->ra["minutes"],
> $this->ra["seconds"]) =
> split('[\ :]', $raIn);
>
> $temp = split('[\ :]', $decIn);
>
> if(count($temp) == 2){
> list($this->dec["degrees"], $this->dec["minutes"]) =
> $temp;
> }elseif(count($temp) == 3){
> list($this->dec["degrees"], $this->dec["minutes"],
> $this->dec["seconds"]) = $temp;
> }
>
> $this->minBrightness = $minBrightness;
> $this->maxBrightness = $maxBrightness;
> }
>
>
> thanks ahead of time
>
> dmc
>
>
>


--
Tony Mountifield
Work: tony(at)softins(dot)co(dot)uk - http://www.softins.co.uk
Play: tony(at)mountifield(dot)org - http://tony.mountifield.org
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: mysql.dll won't load
Next Topic: What this means "(\w|-)+@\w"?
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Tue Nov 26 04:42:24 GMT 2024

Total time taken to generate the page: 0.04225 seconds