On Thu, 9 Jan 2003, John Coggeshall wrote:
>
> This list is for the development _of_ PHP not _with_ PHP, please direct
> future questions there
>
> However, I don't understand the question you are asking... If you have
^^^
Then don't reply?
Derick
--
>I'm asking how to call parent::method() from zend engine (C),
>not from php.
>Are questions regarding the C zend_engine API welcome?
Ah. My appologies then -- I misunderstood your question. Yes, questions
regarding development _of_ PHP/Zend Engine are welcome here :) At first
(and second) read
Alle 09:40, giovedì 9 gennaio 2003, John Coggeshall ha scritto:
> This list is for the development _of_ PHP not _with_ PHP, please direct
> future questions there
>
> However, I don't understand the question you are asking... If you have
> this:
>
> Class A {
>
> function foo() {
>
>
This list is for the development _of_ PHP not _with_ PHP, please direct
future questions there
However, I don't understand the question you are asking... If you have
this:
Class A {
function foo() {
echo "I am function foo";
}
}
Class B extends A {