Jump to content
  • 0

Правильное чтение документации на PHP


kilogram
 Share

Question

array array_slice ( array $array , int $offset [, int $length = NULL [, bool $preserve_keys = false ]] )

Как читать правильно эту строку в документации PHP? Первый параметр означает, что переменная должна передаваться как массив, а вот второй параметр загадочно как-то, расшифруйте.

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

А так чтоб сохранялись ключи при замене существующего массива не получиться?

$input = array("color1"=>"red","color2"=> "green","color3"=>"blue","color4"=>"yellow");
array_splice($input,1,count($input),"orange");
echo '<pre>'.print_r($input,1).'</pre>';

Результат:


Array
(
[color1] => red
[0] => orange
)

Как сделать чтоб не нумировался ключ с нуля, а подставлялось ассоциативное имя ключа?

Link to comment
Share on other sites

  • 0

Вот так тоже переименовывает ключи в числа.

$mas = array("Имя1"=>"orange","Имя2"=>"magenta");
$input = array("color1"=>"red","color2"=> "green","color3"=>"blue","color4"=>"yellow");
array_splice($input,1,2,$mas);
echo '<pre>'.print_r($input,1).'</pre>';

Array

(

[color1] => red

[0] => orange

[1] => magenta

[color4] => yellow

)

Link to comment
Share on other sites

  • 0

Ещё небольшое уточнение. Почему если заменить это:


array_splice($input,1,2,$mas);
echo '<pre>'.print_r($input,1).'</pre>';

на это


$d = array_splice($input,-2,2,$mas);
echo '<pre>'.print_r($d,1).'</pre>';

Почему обрезания значений элементов не произойдет, а выведет просто последние 2 элемента массива без изменений?

Значения последних 2-ух элементов массива $input не меняются почему то

Edited by kilogram
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy