PHP Bugs  
php.net | support | documentation | report a bug | advanced search | search howto | statistics | login

go to bug id or search bugs for  

Bug #7808 variable value triggerd by function
Submitted:14 Nov 2000 8:54am UTC Modified: 14 Nov 2000 9:17am UTC
From:wico at cnh dot nl Assigned to:
Status:Open Category:Feature/Change Request
Version:4.0 Latest CVS (14/11/2000) OS:any
View/Vote Add Comment Developer Edit Submission

Have you experienced this issue?
Rate the importance of this bug to you:

[14 Nov 2000 8:54am UTC] wico at cnh dot nl
Hiya

I don't know how to call it but i thing i could be usefull

example:

$time &= time();   // var to function 

echo $time; // current time
sleep(1);
echo $time; // still current time

example 2:

$data &=  get_some_database_records();

while ($data) {
 echo $data;
}

Get_some_database_records will give every time its called the next var
(until false)

This are just a examples i know some other thing you can do with it but
there yes for your imagenation :)

Greetz,

Wico
[14 Nov 2000 9:11am UTC] hholzgra@php.net
 '&=' has a very different meaning

  '$i &= $j' is an abbreviation of '$i = $i & $j' 
  and '&' being the binary 'bitwise and' operator,
  not the unary 'get reference for'

   what you are looking for is 

  $time="time";
  echo $time();
  sleep(1);
  echo $time();

  and this already works ... 
  
[14 Nov 2000 9:17am UTC] wico at cnh dot nl
I know &= is for somthing else it was just to illustrate what i ment

&= could also be something else

and 
  $time="time";
  echo $time();
  sleep(1);
  echo $time();

is not where i'm looking for

Please read carefully and try to understand what i mean

Greetz,

Wico


RSS feed | show source 

PHP Copyright © 2001-2009 The PHP Group
All rights reserved.
Last updated: Sat Nov 21 10:30:49 2009 UTC