473,395 Members | 1,571 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Extending variable scope? (Related post at alt.php.mysql)

In the function below, I'd like to extend the scope of the $table
variable such that, once assigned it would become available to other
parts of the function. I thought 'global $table;' would solve this but
it's clear that I'm misunderstanding $variable persistence. I posted a
similar enquiry over at alt.php.mysql, but I guess this is a more
appropriate forum because the problems I'm having relate to PHP.

Any help appreciated.

$function array_to_mysql($array) { //1 define the function
if(is_array($array)){ //2 if $array is indeed an array
foreach($array as $key=>$value){ //3 foreach key/value pair
within the array
if(is_array($value)){ //4 either the current value
is itself an array
array_to_mysql($value); //5 (so call this function again
to process that array)
} else { //6 or it isn't
if($key == 'name'){ //7 (in which case, if the key
paired with that value = 'name'
$table = $value; //8 then assign that value to
$table)
} elseif //9 or else
($key == 'ID'){ //10 (if the key paired with
that value = 'ID'
$parent = $value;}else{ //11 then assign that value to
$parent
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";}
if(!is_null($parent)){ //13 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
UPDATE<BR>\n";
}
}
}
}
}

Apologies if the formatting gets stuffed up in the posting. TIA

Nov 3 '06 #1
5 2250
strawberry wrote:
In the function below, I'd like to extend the scope of the $table
variable such that, once assigned it would become available to other
parts of the function. I thought 'global $table;' would solve this but
it's clear that I'm misunderstanding $variable persistence. I posted a
similar enquiry over at alt.php.mysql, but I guess this is a more
appropriate forum because the problems I'm having relate to PHP.

Any help appreciated.

$function array_to_mysql($array) { //1 define the function
if(is_array($array)){ //2 if $array is indeed an array
foreach($array as $key=>$value){ //3 foreach key/value pair
within the array
if(is_array($value)){ //4 either the current value
is itself an array
array_to_mysql($value); //5 (so call this function again
to process that array)
} else { //6 or it isn't
if($key == 'name'){ //7 (in which case, if the key
paired with that value = 'name'
$table = $value; //8 then assign that value to
$table)
} elseif //9 or else
($key == 'ID'){ //10 (if the key paired with
that value = 'ID'
$parent = $value;}else{ //11 then assign that value to
$parent
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";}
if(!is_null($parent)){ //13 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
UPDATE<BR>\n";
}
}
}
}
}

Apologies if the formatting gets stuffed up in the posting. TIA
Just define $table at the start of our function, i.e.

function array_to_mysql($array) {
$table = null;

....

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Nov 4 '06 #2

Jerry Stuckle wrote:
strawberry wrote:
In the function below, I'd like to extend the scope of the $table
variable such that, once assigned it would become available to other
parts of the function. I thought 'global $table;' would solve this but
it's clear that I'm misunderstanding $variable persistence. I posted a
similar enquiry over at alt.php.mysql, but I guess this is a more
appropriate forum because the problems I'm having relate to PHP.

Any help appreciated.

$function array_to_mysql($array) { //1 define the function
if(is_array($array)){ //2 if $array is indeed an array
foreach($array as $key=>$value){ //3 foreach key/value pair
within the array
if(is_array($value)){ //4 either the current value
is itself an array
array_to_mysql($value); //5 (so call this function again
to process that array)
} else { //6 or it isn't
if($key == 'name'){ //7 (in which case, if the key
paired with that value = 'name'
$table = $value; //8 then assign that value to
$table)
} elseif //9 or else
($key == 'ID'){ //10 (if the key paired with
that value = 'ID'
$parent = $value;}else{ //11 then assign that value to
$parent
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";}
if(!is_null($parent)){ //13 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
UPDATE<BR>\n";
}
}
}
}
}

Apologies if the formatting gets stuffed up in the posting. TIA

Just define $table at the start of our function, i.e.

function array_to_mysql($array) {
$table = null;

...

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Thanks Jerry - but I'm still a long way off

Here's a snippet from the array:
Note: This is one of 4 children of a parent task which has ID = 11

[3] =>
Array ( [name] =TASK
[attrs] =>
Array ( [ID] =14
[NAME] =Task 2.4
[EXPAND] =true )
[children] =>
Array ( [0] =>
Array ( [name] =NOTES
[attrs] =Array ( )
[tagData] =Embedded devices, etc ) ) )

The statements echoed by the function look something like this:

INSERT INTO TASK (name) VALUES ('TASK') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (NAME) VALUES ('Task 2.4') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (EXPAND) VALUES ('true') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO NOTES (name) VALUES ('NOTES') ON DUPLICATE KEY UPDATE
INSERT INTO NOTES (tagData) VALUES ('Embedded devices, etc') ON
DUPLICATE KEY UPDATE

and here's how I suppose it should look

INSERT INTO TASK (ID,NAME,EXPAND) VALUES ('14','Task 2.4','true') ON
DUPLICATE KEY UPDATE
INSERT INTO TASK (PARENT) VALUES ('11') WHERE ID = '14'

Even if we ignore the NOTES bit for the now (which I guess should be a
field within the TASK table) you can see there's a lot wrong with my
function!

So, I can see that to do it this way I'll need to sort out my logic,
and also implode the keys and values, something like:

foreach ($array as $key =$value)
$array[$key] = "'".str_replace("'", "\'",
stripslashes($value))."'";
$values = implode(", ", $value);

Again, any more nudges in the right direction greatly appreciated.

---
For continuity, here's the current incarnation of the function:

function array_to_mysql($array) { //1 define the function
$table = null; //2 define a persistent variable
if(is_array($array)){ //3 if $array is indeed an array
foreach($array as $key=>$value){ //4 foreach key/value pair within
the array
if(is_array($value)){ //5 either the current value is
itself an array
array_to_mysql($value); //6 (so call this function again
to process that array);
} else { //7 or it isn't
if($key == 'name'){ //8 (in which case, if the key
paired with that value = 'name'
$table = $value; //9 then assign that value to $table)
} elseif //10 or else
($key == 'ID'){ //11 (if the key paired with that
value = 'ID'
$parent = $value;
$condition = "WHERE ID = $value";} //12 then assign that
value to $parent

echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";
if(!is_null($parent)){ //14 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') $condition<BR>\n";
}
}
}
}
}

Nov 4 '06 #3
strawberry wrote:
Jerry Stuckle wrote:
>>strawberry wrote:
>>>In the function below, I'd like to extend the scope of the $table
variable such that, once assigned it would become available to other
parts of the function. I thought 'global $table;' would solve this but
it's clear that I'm misunderstanding $variable persistence. I posted a
similar enquiry over at alt.php.mysql, but I guess this is a more
appropriate forum because the problems I'm having relate to PHP.

Any help appreciated.

$function array_to_mysql($array) { //1 define the function
if(is_array($array)){ //2 if $array is indeed an array
foreach($array as $key=>$value){ //3 foreach key/value pair
within the array
if(is_array($value)){ //4 either the current value
is itself an array
array_to_mysql($value); //5 (so call this function again
to process that array)
} else { //6 or it isn't
if($key == 'name'){ //7 (in which case, if the key
paired with that value = 'name'
$table = $value; //8 then assign that value to
$table)
} elseif //9 or else
($key == 'ID'){ //10 (if the key paired with
that value = 'ID'
$parent = $value;}else{ //11 then assign that value to
$parent
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";}
if(!is_null($parent)){ //13 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
UPDATE<BR>\n";
}
}
}
}
}

Apologies if the formatting gets stuffed up in the posting. TIA

Just define $table at the start of our function, i.e.

function array_to_mysql($array) {
$table = null;

...

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================


Thanks Jerry - but I'm still a long way off

Here's a snippet from the array:
Note: This is one of 4 children of a parent task which has ID = 11

[3] =>
Array ( [name] =TASK
[attrs] =>
Array ( [ID] =14
[NAME] =Task 2.4
[EXPAND] =true )
[children] =>
Array ( [0] =>
Array ( [name] =NOTES
[attrs] =Array ( )
[tagData] =Embedded devices, etc ) ) )

The statements echoed by the function look something like this:

INSERT INTO TASK (name) VALUES ('TASK') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (NAME) VALUES ('Task 2.4') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (EXPAND) VALUES ('true') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO NOTES (name) VALUES ('NOTES') ON DUPLICATE KEY UPDATE
INSERT INTO NOTES (tagData) VALUES ('Embedded devices, etc') ON
DUPLICATE KEY UPDATE

and here's how I suppose it should look

INSERT INTO TASK (ID,NAME,EXPAND) VALUES ('14','Task 2.4','true') ON
DUPLICATE KEY UPDATE
INSERT INTO TASK (PARENT) VALUES ('11') WHERE ID = '14'

Even if we ignore the NOTES bit for the now (which I guess should be a
field within the TASK table) you can see there's a lot wrong with my
function!

So, I can see that to do it this way I'll need to sort out my logic,
and also implode the keys and values, something like:

foreach ($array as $key =$value)
$array[$key] = "'".str_replace("'", "\'",
stripslashes($value))."'";
$values = implode(", ", $value);

Again, any more nudges in the right direction greatly appreciated.

---
For continuity, here's the current incarnation of the function:

function array_to_mysql($array) { //1 define the function
$table = null; //2 define a persistent variable
if(is_array($array)){ //3 if $array is indeed an array
foreach($array as $key=>$value){ //4 foreach key/value pair within
the array
if(is_array($value)){ //5 either the current value is
itself an array
array_to_mysql($value); //6 (so call this function again
to process that array);
} else { //7 or it isn't
if($key == 'name'){ //8 (in which case, if the key
paired with that value = 'name'
$table = $value; //9 then assign that value to $table)
} elseif //10 or else
($key == 'ID'){ //11 (if the key paired with that
value = 'ID'
$parent = $value;
$condition = "WHERE ID = $value";} //12 then assign that
value to $parent

echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";
if(!is_null($parent)){ //14 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') $condition<BR>\n";
}
}
}
}
}
Hi, Strawberry,

Sorry, it took a while for me to get back to you. I wanted to have some
time to think about this.

Yes, I can see where you're getting confused. It's not an easy job to
solve, but it can be done.

First of all, since you're using the same ID in both cases, you only
need one insert statement:

INSERT INTO TASK (ID,NAME,EXPAND,PARENT)
VALUES ('14','Task 2.4','true', 11)
ON DUPLICATE KEY UPDATE

If you don't have a parent, you could use 0 or null (depending on your
database schema) for PARENT.

Alternatively, you should be using and UPDATE for the second one:

INSERT INTO TASK (ID,NAME,EXPAND)
VALUES ('14','Task 2.4','true')
ON DUPLICATE KEY UPDATE
UPDATE TASK SET PARENT=11 WHERE ID = '14'

But your problem is a lot more difficult because of the way you have
your arrays. I think you would be a lot better off not trying to use a
recursive function here because your children are of different types.

Recursion works much better if the children are of the same type. For
instance, parts to a car:

Car =Array
Engine =Array
Piston
Crankshaft
Camshaft
Valve
Body =Array
Door
Hood
Bumper

And so on.

As it is, you have different types as your children. This setup is
going to be much more difficult to process. You'll probably be better
off processing each type of array separately, i.e. the TASK function
would look for attributes and children. The attributes function would
process attributes such as NAME, ID and expand, while the children
function would handle notes, attributes (calling the attributes function
above) and tagdata.

You may still have some recursions - that's fine. But you'll be
separating the various types of arrays into different functions, making
them easier to handle.

Returning values to the caller could be handled with references.

Another way would be to go to an object oriented method, with each type
of array being a class. Put the array elements into class variables and
when you're done you can process the class to create your SQL
statements. If you're familiar with OO techniques, I think this would
be the better way to go.

But this is going to be a bit complicated because of the different data
types you have.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Nov 6 '06 #4

Jerry Stuckle wrote:
strawberry wrote:
Jerry Stuckle wrote:
>strawberry wrote:

In the function below, I'd like to extend the scope of the $table
variable such that, once assigned it would become available to other
parts of the function. I thought 'global $table;' would solve this but
it's clear that I'm misunderstanding $variable persistence. I posted a
similar enquiry over at alt.php.mysql, but I guess this is a more
appropriate forum because the problems I'm having relate to PHP.

Any help appreciated.

$function array_to_mysql($array) { //1 define the function
if(is_array($array)){ //2 if $array is indeed an array
foreach($array as $key=>$value){ //3 foreach key/value pair
within the array
if(is_array($value)){ //4 either the current value
is itself an array
array_to_mysql($value); //5 (so call this function again
to process that array)
} else { //6 or it isn't
if($key == 'name'){ //7 (in which case, if the key
paired with that value = 'name'
$table = $value; //8 then assign that value to
$table)
} elseif //9 or else
($key == 'ID'){ //10 (if the key paired with
that value = 'ID'
$parent = $value;}else{ //11 then assign that value to
$parent
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";}
if(!is_null($parent)){ //13 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
UPDATE<BR>\n";
}
}
}
}
}

Apologies if the formatting gets stuffed up in the posting. TIA
Just define $table at the start of our function, i.e.

function array_to_mysql($array) {
$table = null;

...

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Thanks Jerry - but I'm still a long way off

Here's a snippet from the array:
Note: This is one of 4 children of a parent task which has ID = 11

[3] =>
Array ( [name] =TASK
[attrs] =>
Array ( [ID] =14
[NAME] =Task 2.4
[EXPAND] =true )
[children] =>
Array ( [0] =>
Array ( [name] =NOTES
[attrs] =Array ( )
[tagData] =Embedded devices, etc ) ) )

The statements echoed by the function look something like this:

INSERT INTO TASK (name) VALUES ('TASK') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (NAME) VALUES ('Task 2.4') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (EXPAND) VALUES ('true') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO NOTES (name) VALUES ('NOTES') ON DUPLICATE KEY UPDATE
INSERT INTO NOTES (tagData) VALUES ('Embedded devices, etc') ON
DUPLICATE KEY UPDATE

and here's how I suppose it should look

INSERT INTO TASK (ID,NAME,EXPAND) VALUES ('14','Task 2.4','true') ON
DUPLICATE KEY UPDATE
INSERT INTO TASK (PARENT) VALUES ('11') WHERE ID = '14'

Even if we ignore the NOTES bit for the now (which I guess should be a
field within the TASK table) you can see there's a lot wrong with my
function!

So, I can see that to do it this way I'll need to sort out my logic,
and also implode the keys and values, something like:

foreach ($array as $key =$value)
$array[$key] = "'".str_replace("'", "\'",
stripslashes($value))."'";
$values = implode(", ", $value);

Again, any more nudges in the right direction greatly appreciated.

---
For continuity, here's the current incarnation of the function:

function array_to_mysql($array) { //1 define the function
$table = null; //2 define a persistent variable
if(is_array($array)){ //3 if $array is indeed an array
foreach($array as $key=>$value){ //4 foreach key/value pair within
the array
if(is_array($value)){ //5 either the current value is
itself an array
array_to_mysql($value); //6 (so call this function again
to process that array);
} else { //7 or it isn't
if($key == 'name'){ //8 (in which case, if the key
paired with that value = 'name'
$table = $value; //9 then assign that value to $table)
} elseif //10 or else
($key == 'ID'){ //11 (if the key paired with that
value = 'ID'
$parent = $value;
$condition = "WHERE ID = $value";} //12 then assign that
value to $parent

echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";
if(!is_null($parent)){ //14 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') $condition<BR>\n";
}
}
}
}
}

Hi, Strawberry,

Sorry, it took a while for me to get back to you. I wanted to have some
time to think about this.

Yes, I can see where you're getting confused. It's not an easy job to
solve, but it can be done.

First of all, since you're using the same ID in both cases, you only
need one insert statement:

INSERT INTO TASK (ID,NAME,EXPAND,PARENT)
VALUES ('14','Task 2.4','true', 11)
ON DUPLICATE KEY UPDATE

If you don't have a parent, you could use 0 or null (depending on your
database schema) for PARENT.

Alternatively, you should be using and UPDATE for the second one:

INSERT INTO TASK (ID,NAME,EXPAND)
VALUES ('14','Task 2.4','true')
ON DUPLICATE KEY UPDATE
UPDATE TASK SET PARENT=11 WHERE ID = '14'

But your problem is a lot more difficult because of the way you have
your arrays. I think you would be a lot better off not trying to use a
recursive function here because your children are of different types.

Recursion works much better if the children are of the same type. For
instance, parts to a car:

Car =Array
Engine =Array
Piston
Crankshaft
Camshaft
Valve
Body =Array
Door
Hood
Bumper

And so on.

As it is, you have different types as your children. This setup is
going to be much more difficult to process. You'll probably be better
off processing each type of array separately, i.e. the TASK function
would look for attributes and children. The attributes function would
process attributes such as NAME, ID and expand, while the children
function would handle notes, attributes (calling the attributes function
above) and tagdata.

You may still have some recursions - that's fine. But you'll be
separating the various types of arrays into different functions, making
them easier to handle.

Returning values to the caller could be handled with references.

Another way would be to go to an object oriented method, with each type
of array being a class. Put the array elements into class variables and
when you're done you can process the class to create your SQL
statements. If you're familiar with OO techniques, I think this would
be the better way to go.

But this is going to be a bit complicated because of the different data
types you have.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Thanks Jerry, plenty of food for thought.

I'm reluctant to take an OO approach simply because my experience with
programming generally, and this method in particular, is so limited.

I know that the structure of the array is somewhat inconsistent.
Unfortunately, that's not an aspect I have much control over, but
that's why I took an approach that 'simply' said 'for every occurrence
of the key 'name', let its value be that of a table and let every
subsequent key be a field within that table - until, of course, you
find another occurrence of the key 'name'. Oh, and record the fact that
nested arrays are children of the parent array.'

Although in reality I'm really only interested in a small part of the
whole array, I thought it would be simpler to have a script that
processed the whole thing with ambivalence. The XML from which the
array is generated is still in development. There may, in due course,
be more objects added to it, some of which I too would be interested in
including in my db. This way, I'd only have to add the missing tables -
I could even code for the creation of a table if one was missing.

As I mentioned, an earlier version of this function was posted over at
alt.php.mysql where Paul's been giving me some useful pointers. I know
that you both frequent both NGs so I didn't worry about it, but perhaps
I should consider closing one or other of the threads and consolidating
everything in one place - probably here, as the problem is more
specifically a PHP one rather than MySQL.

Nov 7 '06 #5

strawberry wrote:
Jerry Stuckle wrote:
strawberry wrote:
Jerry Stuckle wrote:
>
>>strawberry wrote:
>>
>>>In the function below, I'd like to extend the scope of the $table
>>>variable such that, once assigned it would become available to other
>>>parts of the function. I thought 'global $table;' would solve this but
>>>it's clear that I'm misunderstanding $variable persistence. I posted a
>>>similar enquiry over at alt.php.mysql, but I guess this is a more
>>>appropriate forum because the problems I'm having relate to PHP.
>>>
>>>Any help appreciated.
>>>
>>>$function array_to_mysql($array) { //1 define the function
>> if(is_array($array)){ //2 if $array is indeed an array
>> foreach($array as $key=>$value){ //3 foreach key/value pair
>>>within the array
>> if(is_array($value)){ //4 either the current value
>>>is itself an array
>> array_to_mysql($value); //5 (so call this function again
>>>to process that array)
>> } else { //6 or it isn't
>> if($key == 'name'){ //7 (in which case, if the key
>>>paired with that value = 'name'
>> $table = $value; //8 then assign that value to
>>>$table)
>> } elseif //9 or else
>> ($key == 'ID'){ //10 (if the key paired with
>>>that value = 'ID'
>> $parent = $value;}else{ //11 then assign that value to
>>>$parent
>>>echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
>>>UPDATE <BR>\n";}
>> if(!is_null($parent)){ //13 Finally, if $parent is
>>>assigned issue the following
>>>echo "INSERT INTO $table (ID) VALUES ('$parent') ON DUPLICATE KEY
>>>UPDATE<BR>\n";
>>>}
>>>}
>>>}
>>>}
>>>}
>>>
>>>Apologies if the formatting gets stuffed up in the posting. TIA
>>>
>>
>>Just define $table at the start of our function, i.e.
>>
> function array_to_mysql($array) {
> $table = null;
>>
>>...
>>
>>--
>>==================
>>Remove the "x" from my email address
>>Jerry Stuckle
>>JDS Computer Training Corp.
>>js*******@attglobal.net
>>==================
>
>
Thanks Jerry - but I'm still a long way off
>
Here's a snippet from the array:
Note: This is one of 4 children of a parent task which has ID = 11
>
[3] =>
Array ( [name] =TASK
[attrs] =>
Array ( [ID] =14
[NAME] =Task 2.4
[EXPAND] =true )
[children] =>
Array ( [0] =>
Array ( [name] =NOTES
[attrs] =Array ( )
[tagData] =Embedded devices, etc ) ) )
>
The statements echoed by the function look something like this:
>
INSERT INTO TASK (name) VALUES ('TASK') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (NAME) VALUES ('Task 2.4') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO (EXPAND) VALUES ('true') ON DUPLICATE KEY UPDATE
INSERT INTO (ID) VALUES ('14') WHERE ID = 14
INSERT INTO NOTES (name) VALUES ('NOTES') ON DUPLICATE KEY UPDATE
INSERT INTO NOTES (tagData) VALUES ('Embedded devices, etc') ON
DUPLICATE KEY UPDATE
>
and here's how I suppose it should look
>
INSERT INTO TASK (ID,NAME,EXPAND) VALUES ('14','Task 2.4','true') ON
DUPLICATE KEY UPDATE
INSERT INTO TASK (PARENT) VALUES ('11') WHERE ID = '14'
>
Even if we ignore the NOTES bit for the now (which I guess should be a
field within the TASK table) you can see there's a lot wrong with my
function!
>
So, I can see that to do it this way I'll need to sort out my logic,
and also implode the keys and values, something like:
>
foreach ($array as $key =$value)
$array[$key] = "'".str_replace("'", "\'",
stripslashes($value))."'";
$values = implode(", ", $value);
>
Again, any more nudges in the right direction greatly appreciated.
>
---
For continuity, here's the current incarnation of the function:
>
function array_to_mysql($array) { //1 define the function
$table = null; //2 define a persistent variable
if(is_array($array)){ //3 if $array is indeed an array
foreach($array as $key=>$value){ //4 foreach key/value pair within
the array
if(is_array($value)){ //5 either the current value is
itself an array
array_to_mysql($value); //6 (so call this function again
to process that array);
} else { //7 or it isn't
if($key == 'name'){ //8 (in which case, if the key
paired with that value = 'name'
$table = $value; //9 then assign that value to $table)
} elseif //10 or else
($key == 'ID'){ //11 (if the key paired with that
value = 'ID'
$parent = $value;
$condition = "WHERE ID = $value";} //12 then assign that
value to $parent
>
echo "INSERT INTO $table ($key) VALUES ('$value') ON DUPLICATE KEY
UPDATE <BR>\n";
if(!is_null($parent)){ //14 Finally, if $parent is
assigned issue the following
echo "INSERT INTO $table (ID) VALUES ('$parent') $condition<BR>\n";
}
}
}
}
}
>
Hi, Strawberry,

Sorry, it took a while for me to get back to you. I wanted to have some
time to think about this.

Yes, I can see where you're getting confused. It's not an easy job to
solve, but it can be done.

First of all, since you're using the same ID in both cases, you only
need one insert statement:

INSERT INTO TASK (ID,NAME,EXPAND,PARENT)
VALUES ('14','Task 2.4','true', 11)
ON DUPLICATE KEY UPDATE

If you don't have a parent, you could use 0 or null (depending on your
database schema) for PARENT.

Alternatively, you should be using and UPDATE for the second one:

INSERT INTO TASK (ID,NAME,EXPAND)
VALUES ('14','Task 2.4','true')
ON DUPLICATE KEY UPDATE
UPDATE TASK SET PARENT=11 WHERE ID = '14'

But your problem is a lot more difficult because of the way you have
your arrays. I think you would be a lot better off not trying to use a
recursive function here because your children are of different types.

Recursion works much better if the children are of the same type. For
instance, parts to a car:

Car =Array
Engine =Array
Piston
Crankshaft
Camshaft
Valve
Body =Array
Door
Hood
Bumper

And so on.

As it is, you have different types as your children. This setup is
going to be much more difficult to process. You'll probably be better
off processing each type of array separately, i.e. the TASK function
would look for attributes and children. The attributes function would
process attributes such as NAME, ID and expand, while the children
function would handle notes, attributes (calling the attributes function
above) and tagdata.

You may still have some recursions - that's fine. But you'll be
separating the various types of arrays into different functions, making
them easier to handle.

Returning values to the caller could be handled with references.

Another way would be to go to an object oriented method, with each type
of array being a class. Put the array elements into class variables and
when you're done you can process the class to create your SQL
statements. If you're familiar with OO techniques, I think this would
be the better way to go.

But this is going to be a bit complicated because of the different data
types you have.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Thanks Jerry, plenty of food for thought.

I'm reluctant to take an OO approach simply because my experience with
programming generally, and this method in particular, is so limited.

I know that the structure of the array is somewhat inconsistent.
Unfortunately, that's not an aspect I have much control over, but
that's why I took an approach that 'simply' said 'for every occurrence
of the key 'name', let its value be that of a table and let every
subsequent key be a field within that table - until, of course, you
find another occurrence of the key 'name'. Oh, and record the fact that
nested arrays are children of the parent array.'

Although in reality I'm really only interested in a small part of the
whole array, I thought it would be simpler to have a script that
processed the whole thing with ambivalence. The XML from which the
array is generated is still in development. There may, in due course,
be more objects added to it, some of which I too would be interested in
including in my db. This way, I'd only have to add the missing tables -
I could even code for the creation of a table if one was missing.

As I mentioned, an earlier version of this function was posted over at
alt.php.mysql where Paul's been giving me some useful pointers. I know
that you both frequent both NGs so I didn't worry about it, but perhaps
I should consider closing one or other of the threads and consolidating
everything in one place - probably here, as the problem is more
specifically a PHP one rather than MySQL.
Well, I think this very nearly works...

function array_to_mysql($array) { // define the function
static $table = null; // define a persistent
variable
static $parent = null; // and another
static $id = null; // and another
if(is_array($array)){ // if $array is indeed an
array
foreach($array as $key=>$value){// foreach key/value pair
within the array
if(is_array($value)){ // either the current value
is itself an array
if ($key == 'children'){// (so see if it's a
child...
$parent = $id; // ...and if so, record the id of
its parent
} // and then
array_to_mysql($value); // so call this function
again to process that array);
} else { // or it isn't
if($key == 'name') { // If $key = 'name' then its
associated
$table = $value; // value is the name of a table within
my db
} elseif // otherwise
($key == 'ID'){ // If $key = 'ID' then its associated
value
$id = $value; // is a primary key (and, possibly, a
parent) within my db
if (!is_null($parent)){
echo "INSERT INTO $table (ID,PARENT) VALUES
('$id','$parent') UPDATE ON DUPLICATE KEY<BR>\n";
}
} else {
echo "INSERT INTO $table (ID,$key) VALUES
('$id','$value') UPDATE ON DUPLICATE KEY<BR>\n";

}
}
}
}
}

it doesn't implode anything so I've got to issue a separate INSERT
statement each time and there's a flaw whereby it inappropriately
assigns a value of '1' to the $parent variable so creating a whole
bunch of meaningless INSERT statements but, having come this far, this
must simple enough to straighten out :-) I'm going to replace the
echoes with real statements now and see what happens...

Jerry & Paul, thanks for all your help.

Nov 8 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

75
by: David MacQuigg | last post by:
Seems like we need a simple way to extend Python syntax that doesn't break existing syntax or clash with any other syntax in Python, is easy to type, easy to read, and is clearly distinct from the...
4
by: Alicia Haumann | last post by:
I accidentally sent this to webmaster@python.org, so this could be a duplicate if "webmaster" forwards it to this list. :{ Hi, there. Thanks for any help that can be offered. I've been...
134
by: James A. Donald | last post by:
I am contemplating getting into Python, which is used by engineers I admire - google and Bram Cohen, but was horrified to read "no variable or argument declarations are necessary." Surely that...
166
by: Graham | last post by:
This has to do with class variables and instances variables. Given the following: <code> class _class: var = 0 #rest of the class
4
by: Gery D. Dorazio | last post by:
Gurus, If a static variable is defined in a class what is the scope of the variable resolved to for it to remain 'static'? For instance, lets say I create a class library assembly that is...
13
by: eman1000 | last post by:
I was recently looking at the prototype library (http://prototype.conio.net/) and I noticed the author used the following syntax: Object.extend(MyObj.prototype, { my_meth1: function(){},...
6
by: Jody Gelowitz | last post by:
I have run into an issue with variable scope within an XSLT document that is translated in VS.NET 2.0. Under VS.NET 1.1 (XslTransform), this code works fine. However, when using VS.NET 2.0...
112
by: istillshine | last post by:
When I control if I print messages, I usually use a global variable "int silent". When I set "-silent" flag in my command line parameters, I set silent = 1 in my main.c. I have many functions...
11
by: whirlwindkevin | last post by:
I saw a program source code in which a variable is defined in a header file and that header file is included in 2 different C files.When i compile and link the files no error is being thrown.How is...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.