DrupalBin
Submit Code
About
Recent Posts
Serializable closures
Closures in menu item arguments
dpr($content['field_headshot'])
Fix for Git push error
Проверка
Code
$item['title'] = $item['title'];
Loading specific field
expire give non-aliased paths
Fix for Code
more
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Log in using OpenID
Cancel OpenID login
Create new account
Request new password
Tags
CCK
drupal
fapi
jquery
menu
module
php
simpletest
taxonomy
test
theme
views
more tags
Home
array_splice
array_splice??
February 8, 2010 - 6:29pm — Anonymous
$input
=
array
(
"red"
,
"green"
,
"blue"
,
"yellow"
)
;
$o
=
array_splice
(
$input
, 0, 2,
array
(
'orange'
)
)
;
// I want to: remove from input starting at 0, remove 2 things.
array_splice
Read more