I have the following situation.
I wrote some software and split it up into functionality:
class core {
function go{
}
}
class A extends core {
// PHP4 constructor
function A {
$this->go();
}
}
class B extends core {
}
In core I define functions and variables that are to be used
Hi group,
I am looking for an easy way to manipulate (read, write) the metadata
(title, subject, keywords, author) in PDF files through PHP.
Most PHP/PDF solutions I have found so far (through Google) are aimed at
constructing PDFs from text and graphics, with lots of fancy features,
but most
Graham Anderson wrote:
Hi
I am allready using a 'rank' field now... with 1 to N :) There are just
so damned many of them to order manually
the up/down button solution...is there a tutorial or php class out there
I could take a look at...
where you:
give the class a query...
the up and down link
Hi
I am allready using a 'rank' field now... with 1 to N :) There are
just so damned many of them to order manually
the up/down button solution...is there a tutorial or php class out
there I could take a look at...
where you:
give the class a query...
get a found set back as html with these up/
On Tue, April 26, 2005 7:05 pm, Graham Anderson said:
> lately, I'm finding myself reordering large amounts of rows populated
> from a database query ...with an order_id field
> this is a bit tedious re-entering every order_id for a found set :(
Do different users get to order differently, or is
hi
lately, I'm finding myself reordering large amounts of rows populated
from a database query ...with an order_id field
this is a bit tedious re-entering every order_id for a found set :(
Is there a php class out there that allows you to arbitrarily order
rows in a found setgraphically ?
October 12, 2004 11:28 PM
Subject: [PHP] PHP Class
Hi All ,
I do not know whether to post here or not , but it always happens that I
always get the crispy answers from here.
I have JDK 1.4.2 Installed on my machine, Now I externally downloaded a Jimi
Package and I wanted to know how to instal
Hi All ,
I do not know whether to post here or not , but it always happens that I always get
the crispy answers from here.
I have JDK 1.4.2 Installed on my machine, Now I externally downloaded a Jimi Package
and I wanted to know how to install/deploy/put this Jimi ( java Extension )in which
f
Hello all,
I'm looking for an alternative to PHP's XSLT extension. Does anyone
know of a good PHP class capable of performing XSL transformations?
Thanks for your time,
Erik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
You need to read manual section about object oriented programing in php:
http://www.php.net/oop
Antonio Bologna wrote:
Sorry, here it is the code:
/* Trying to use queues in PHP, let
* see if that works.
*/
class ArrayQueue {
var $theArray = array();
var $currentSize;
var $front;
var $back
Sorry, here it is the code:
http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello everyone, I'm just curious, I implemented a Array Queue in php, but
not sure why is not working, this ArrayQueue is missing some functions like
doubleQueue and dequeue, but anyway I'm trying to implmeneted in php, does
anyone knows what's wrong? Thanks
--
PHP General Mailing List (http://ww
BENARD Jean-philippe wrote:
[ snip ]
Is there something to do in order that when I use
xxx_cl_app->ExecuteQuery(), there's a function ExecuteQuery() in
xxx_cl_app that do something like this :
(xxx_cl_app.php)
function ExecuteQuery(x,y) {
$tmpResult = [herited_class]->ExecuteQuery(x,y);
: BENARD Jean-philippe
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 23, 2003 7:59 AM
To: [EMAIL PROTECTED]
Subject: [PHP] PHP class and extends
Hi !
I've got a problem with class extends. I've a "top" class which
name is cl_app. xxx_cl_app is an extend of cl_
Hi !
I've got a problem with class extends. I've a "top" class which
name is cl_app. xxx_cl_app is an extend of cl_app. Cl_app define a
function called "ExecuteQuery". xxx_cl_app define this function too but
this one is obsolete. Now, I want to use the cl_app "ExecuteQuery"
function in my
Here's a quick function of the top of my head. I'm not sure if
x.x.0.x or x.0.x.x are valid IP addresses. Adjust as necessary.
255) {
echo "First octet of IP address cannot exceed 255";
return false;
}
$ip_list[]=implode(".",$octet);
}
return $ip_list;
}
$arr=cidr("192.1
does anyone know of a class that is able to extrapolate a list of IPs given an
address in cidr notation. I have used the Net::Netmask module in perl, so I
was just wondering if there was a PHP equivalent.
Thanks
Rob
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http:
Hi,
Thursday, August 15, 2002, 5:17:00 AM, you wrote:
MA> Well, I actually have a full db class which has a connect and close method
MA> as well as query, fetch_array, etc... What I really want to know is how to
MA> use the methods in my db class from another class (myclass for example)..
MA> D
Do you know where I can find more info on how to use the scope resolution
operator?
My searches aren't giving much (at leant not mcuh regarding php) and in the
manual, it only shows up momentarily as a note in the operators section...
Mark
"Nick Oostveen" <[EMAIL PROTECTED]> wrote in message
That seems more like what I'm looking for..
Thank you, Nick...
Mark
"Nick Oostveen" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> If you are just trying to access a classes functions without creating an
> instance of it you're probably looking to use the
e:
> $this->mydb(); This way you can always reuse the method from other code.
>
> hth,
> Steve.
>
> -Original Message-
> From: Mark Armendariz [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, August 14, 2002 2:44 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP]
If you are just trying to access a classes functions without creating an
instance of it you're probably looking to use the scope resolution operator
::. For this to work all you have to do is ensure that the definition for
the class you wish to use is included into the file containing the clas
AIL PROTECTED]]
Sent: Wednesday, August 14, 2002 2:44 PM
To: [EMAIL PROTECTED]
Subject: [PHP] PHP - class question
Hello, To begin.. i'm new to the list...
I'm trying to learn good practices in OOP based PHP. I'm actually a bit new
to OOP in general, but I've done quite a bit
Hello, To begin.. i'm new to the list...
I'm trying to learn good practices in OOP based PHP. I'm actually a bit new
to OOP in general, but I've done quite a bit of reading and playing around
with it in the past couple of months.
What I'm trying to figure out is the proper way to call a class
I havent used them in php/pear but here is some more info
http://www.php.net/manual/en/class.pear.php
--
Chris Lee
[EMAIL PROTECTED]
"Martín Marqués" <[EMAIL PROTECTED]> wrote in message
01062015390800.12018@bugs">news:01062015390800.12018@bugs...
> Can we dream of having destructors in c
Can we dream of having destructors in class definition some day when
programing in PHP?
Saludos... ;-)
--
Cualquiera administra un NT.
Ese es el problema, que cualquiera administre.
-
Martin Marques |[EMAI
26 matches
Mail list logo