-
- function random_str () {
- $poems="The value of life is not measured by time, but by depth. - Leo Tolstoy
- Threesome, There must be a teacher. Choose what is good and follow it, and change what is bad. ——Confucius Life is not a pleasure, but a very heavy work. —— Leo Tolstoy. To become synonymous with excellence, many people do not need an environment of outstanding quality. —— Steve Jobs
- Is there any other reason to live to change the world? —— Steve Jobs
- Follow yourself. —— Steve Jobs.
- Life is unfair; you have to adapt to it. ——Bill Gates
- Remind yourself to pay attention to happiness, just like looking at the sun on a cold day, your heart will be warm and bright without knowing it. ——Bi Shumin.
- Happiness is a vibration of the soul. It is like an ear that can listen to music. It needs constant training - Bi Shumin
- The world does not care about your self-esteem before you feel good about yourself. Achieve something. ——Bill Gates
- Life is empty and boring only to boring people - Chernyshevsky";
- $poems=explode("n",$poems) ;
- return $poems[rand(0,count($poems)-1)];
- }
- function says(){
- $says=random_str();
- echo $says;
- }
- ?>
-
-
Copy code
Key statements:
$poems=explode("n",$poems);
return $poems[rand(0,count($poems)-1)];
If you are using wordpress, you can put the file says.php in the theme root directory, then modify header.php in the theme root directory and insert a statement in front:
and insert the following statement where you want to display random famous quotes:
says();
This way it can be called.
Of course, it can also be used in any other PHP program to achieve colorful display functions.
|