V
V
Vasya2020-02-10 19:23:30
PHP
Vasya, 2020-02-10 19:23:30

Where can I get a list of animals?

I need a dictionary that lists the most famous animal separated by commas. Where can I find a list of animals?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexander, 2019-05-31
@Captain

If it fits into memory, then by regular means. If it doesn’t fit, then split it into parts and, again, look for regular means in each part.

C
catrinblaidd, 2019-05-31
@catrinblaidd

$text = 'sometext"link":"mp3-1456/6567766876843"
"link":"mp3-1234/5678"anyinfo"link":"mp3-14567890987654/6"';
\preg_match_all('/\"link\":\"(mp3\-[\d]+\/[\d]+)\"/u', $text, $matches);
echo '<pre>';
var_dump($matches[1]);

D
Dimonchik, 2020-02-10
@dimonchik2013

on Wikipedia
957e5e6a3b44cb65e4335197453e6f.jpg

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question