effient code writing
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php
Alan Knowles wrote:
for the life of me I cant remember the date of it, (or even find it on
google/zend.com/marc.theaimsgroup... etc.)
from what i remember, it had a number of flaws.
a) ambiguaty of the source of a variable or method, (as it was
originally illustrated as poluting the local vari
for the life of me I cant remember the date of it, (or even find it on
google/zend.com/marc.theaimsgroup... etc.)
from what i remember, it had a number of flaws.
a) ambiguaty of the source of a variable or method, (as it was
originally illustrated as poluting the local variable namespace)
b) t
If someone could help me find the discusions on the topic, i would
greatly appreciate it. I searched and have not found anything yet. Or
if someone could explain why the idea was rejected.
Thanks
jason
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.p
MySQL AB is please to announce that the Call for Papers for the 2004
MySQL User Conference is now officially open.
We encourage every MySQL user with something to say - from grey-bearded
hackers and peach-fuzzed power users to corporate code wranglers and
veteran DBAs - to drop by http://mysql.
Derek Ford wrote:
This is highly unusual I recently started gathering people who
could implement and opinions of those who wanted or didn't want a
'with' construct.
http://www.phpfreaks.com/forums/topic11451.php
I toyed with the idea, and then when I went into core to implement it,
I beca
This is highly unusual I recently started gathering people who could
implement and opinions of those who wanted or didn't want a 'with'
construct.
http://www.phpfreaks.com/forums/topic11451.php
I toyed with the idea, and then when I went into core to implement it, I
became _very_ confused
This has been discussed before on the mailing list, (either this or ZE2)
and rejected. - have a look through the archives
Regards
Alan
netcat wrote:
On Wed, 2003-12-10 at 03:01, jason davidson wrote:
Ive seen the Control Flow constuct With ...End With used in VB (yup,
VB.. :)) although im not a
Here is javascripts implementation of the with construct.
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/stmt.html#1004910
im not as fond of that kind of implementation, but the idea is the
same. I prefer to have some kind of syntax that indicates you are
calling a met
i agree that it doesnt look very nice that way, with ->property or
->method() , that doesnt negate its usefullness in my mind however.
if it was every imlemented, i would suspect that properties and methods
wouldnt be syntaxed the same way, which, for that reason alone, makes it
unlikely it
On Wed, 2003-12-10 at 22:42, Justin Hannus wrote:
> I've used the "with (object)" construct in JavaScript before and I'm
> assuming it would work the same, but instead of:
>
> With $obj
> ->methodCall();
> // ugly ...
>
> it would be much sexier like:
>
> with ($obj) {
> methodCall();
> }
>
thanks a lot and commited
chregu
On 12/10/03 10:04 PM, Adam Maccabee Trachtenberg wrote:
The XSLT extension crashes when you call php:functionString() with a
non-string handler, like:
This patch fixes this problem:
http://www.trachtenberg.com/patches/xslt_function_handler.txt
-adam
--
christi
walt boring wrote:
BDKR wrote:
jason davidson wrote:
Ive seen the Control Flow constuct With ...End With used in VB (yup,
VB.. :)) although im not a fan of VB, i liked the feature, is there
any consideration to this kind of construct for php.
here the only example if it i could find online for
The XSLT extension crashes when you call php:functionString() with a
non-string handler, like:
This patch fixes this problem:
http://www.trachtenberg.com/patches/xslt_function_handler.txt
-adam
--
[EMAIL PROTECTED]
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visi
I've used the "with (object)" construct in JavaScript before and I'm
assuming it would work the same, but instead of:
With $obj
->methodCall();
// ugly ...
it would be much sexier like:
with ($obj) {
methodCall();
}
But its all just sugar. As far as implementing it in userland with a
recurs
BDKR wrote:
jason davidson wrote:
Ive seen the Control Flow constuct With ...End With used in VB (yup,
VB.. :)) although im not a fan of VB, i liked the feature, is there
any consideration to this kind of construct for php.
here the only example if it i could find online for anyone that hasnt
jason davidson wrote:
Ive seen the Control Flow constuct With ...End With used in VB (yup,
VB.. :)) although im not a fan of VB, i liked the feature, is there
any consideration to this kind of construct for php.
here the only example if it i could find online for anyone that hasnt
seen it befor
On Wed, 10 Dec 2003, Marcus Bointon wrote:
> Hi,
>
> Can someone please commit the patch I posted a few weeks ago for adding
> MacRoman encoding to htmlentities encodings.
Will do.
Derick
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.ph
Hi,
Can someone please commit the patch I posted a few weeks ago for adding
MacRoman encoding to htmlentities encodings.
The patch is available here:
http://www.synchromedia.co.uk/php/html.c.diff.txt
Thanks,
Marcus
--
Marcus Bointon
Synchromedia Limited: Putting you in the picture
[EMAIL PROT
Hi,
I'd like to write a new PHP extension, I know C, even if I'm not a guru,
but I didn't find a good tutorial about Zend API. Seems that the one on
Zend's website is an old version. Am I wrong?
Yes the documentation is a little old but it helps.
A book on this subject has been released (Buildi
Hello internals,
I'm writing extension that substitutes object's read_property
and write_property handlers with it's own and I found that such code
arr[] = $element;
}
}
$a = new A();
$something = new A();
$a->addToArr( $something );
?>
doesn't produce call to read_pr
Hi all,
I'd like to write a new PHP extension, I know C, even if I'm not a guru, but I didn't
find a good tutorial about Zend API. Seems that the one on Zend's website is an old
version. Am I wrong?
Thanx in advance
regards
Sergio
-Original Message-
From: Wez Furlong [mailto:[EMAIL PROT
On Wed, 10 Dec 2003, Uwe Steinmann wrote:
> On Tue, Dec 09, 2003 at 05:40:41PM -, Wez Furlong wrote:
> > It seems that most people still don't really get the idea behind
> > PECL, and how moving extensions there is a good idea.
> >
> Who is currently doing the move within the cvs repository?
On Wed, 2003-12-10 at 03:01, jason davidson wrote:
> Ive seen the Control Flow constuct With ...End With used in VB (yup,
> VB.. :)) although im not a fan of VB, i liked the feature, is there any
> consideration to this kind of construct for php.
> here the only example if it i could find online
On Tue, 2003-12-09 at 21:24, Wez Furlong wrote:
> > And you're moving us into the support nightmare..
> > Instead of asking what php version they use, we need
> > to start asking which possible versions of different
> > extensions they happen to use, how they compiled them,
> >
On Tue, 2003-12-09 at 21:21, Jani Taskinen wrote:
> On Tue, 9 Dec 2003, Wez Furlong wrote:
>
> >> it was actually my idea to for the oci8 stuff - and have some new
> >> maintainer maintain it in pecl.
> >
> >Yep, I remember.
> >
> >> i see no valid reason against it. he can start hacking on it (
On Tue, Dec 09, 2003 at 05:40:41PM -, Wez Furlong wrote:
> It seems that most people still don't really get the idea behind
> PECL, and how moving extensions there is a good idea.
>
Who is currently doing the move within the cvs repository?
Uwe
--
MMK GmbH, Universitaetsstr. 11, 58097 Ha
27 matches
Mail list logo