Новые книги

The first edition of this book started with the words: ‘A modern society could no longer function without the microprocessor.’

This is certainly still true but it is even truer if we include the microcontroller. While the microprocessor is at the heart of our computers, with a great deal of publicity, the microcontroller is quietly running the rest of our world. They share our homes, our vehicles and our workplace, and sing to us from our greetings cards. They are our constant, unseen companions and billions are being installed every year with little or no publicity. The purpose of this book is to give a worry-free introduction to microprocessors and microcontrollers. It starts at the beginning and does not assume any previous knowledge of microprocessors or microcontrollers and, in gentle steps, introduces the knowledge necessary to take those vital first steps into the world of the micro. John Crisp
Книга содержит практические способы привлечения новых клиентов для бизнеса из социальных сетей. Более подробно в ней разобраны основные принципы продвижения бизнес-страниц в таких социальных сообществах, как «ВКонтакте» и «Facebook». Во второй части книги детально рассмотрены отдельные примеры продвижения. Ключевые моменты издания:

– этапы и последовательность действий по привлечению клиентов;

– получение потока клиентов;

– монетизация;

– оптимизация сайта;

– оформление бизнес-страниц;

– генерация и публикация контента.

Рекомендуется всем, кто хочет использовать новые источники привлечения клиентов.

array_reverse



Учебник РНР
Назад Вперёд

array_reverse

(PHP 4)

array_reverse - возвращает массив с элементами, развёрнутыми в обратном порядке.

Описание

array array_reverse (array array [, bool preserve_keys])

array_reverse() принимает массив array и возвращает новый массив с элементами в перевёрнутом порядке, сохраняя ключи, если preserve_keys имеет значение TRUE.

Пример 1. array_reverse()
$input = array ("php", 4.0, array ("green", "red"));
$result = array_reverse ($input);
$result_keyed = array_reverse ($input, TRUE);

Переменные $result и $result_keyed содержать теперь один и тот же элемент, но отметьте разницу между ключами. Вывод $result и $result_keyed:

Array
(
    [0] => Array
        (
            [0] => green
            [1] => red
        )

    [1] => 4
    [2] => php
)
Array
(
    [2] => Array
        (
            [0] => green
            [1] => red
        )

    [1] => 4
    [0] => php
)

Примечание: второй параметр был введён в РНР 4.0.3.


Назад Оглавление Вперёд
array_reduce Вверхarray_search