scronide

657
Reputation
99 views

Registered User

Name scronide
Member for 1 year
Seen Sep 26 at 23:25
Website
Location Burnaby, BC, Canada
Age 31
Sep
27
awarded  Yearling
Aug
15
answered Drupal for users creating “sub”-users?
Aug
14
answered CSS Positioning inside of an HTML Table
Aug
10
answered PHP preg_replace problem
Aug
10
answered Any way I can share a information within 2 difference domain?
Jul
17
comment Merge or combine an array like this? on PHP
This does the trick, but it's important to note that array_replace() only exists since PHP 5.3.0 (20090630).
Jul
17
comment Merge or combine an array like this? on PHP
This won't work because it assumes the child array values are keyed on 0, when none of those in the example are.
Jul
17
comment Merge or combine an array like this? on PHP
You've introduced a syntax error: "= +=".
Jul
17
comment Merge or combine an array like this? on PHP
You lose the keys relying on array_push. You'd have to replace that with $another[$y] = $z instead.
Jul
17
comment Merge or combine an array like this? on PHP
You'll lose the keys with array_merge. You'd have to use the + operator instead.