“Escolha uma palavra aleatória de uma matriz php” Respostas de código

Escolha uma palavra aleatória de uma matriz php

$items = array(1, 2, 3, 4, 5);
echo $items[array_rand($items)];
Jumping Boy

PHP Obtenha elemento aleatório da matriz

<?php
//array_rand ( array $array [, int $num = 1 ] ) 
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "\n";
echo $input[$rand_keys[1]] . "\n";
?>

Alberto Peripolli

Escolha uma palavra aleatória de uma matriz php

<?php
// array_rand() + shuffle
$answers = Array('Hello!','Salut!','Vivat!','Chao!','Привет');
shuffle($answers);
echo $answers[array_rand($answers)];

// I use it for BotMan:
$botman->hears('Hi', function ($bot) {
    $answers = Array('Hello!','Salut!','Vivat!','Chao!','Привет');
    shuffle($answers);
    $bot->reply($answers[array_rand($answers)]);
});
Eager Elephant

Respostas semelhantes a “Escolha uma palavra aleatória de uma matriz php”

Perguntas semelhantes a “Escolha uma palavra aleatória de uma matriz php”

Mais respostas relacionadas para “Escolha uma palavra aleatória de uma matriz php” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código