Tagged: educate

PHP : How to random values in array

PHP : How to random values in array วันนี้มีวิธีการ random เลือกค่าจาก array มาบอกเล่า ซึ่งฟังก์ชันที่เกี่ยวข้องก็คือ array_rand(<array>,<num random>) ; <array>= ตัวแปร array ที่จัดเก็บค่า <num random>= จำนวนค่าที่จะสุ่มเลือกมาต่อครั้ง วิธีการเรียกใช้ลองดูตัวอย่างง่ายๆกันครับ ในตัวอย่างจะสุ่งเลือกค่าจาก array ทีละ 3 ค่า <?php $input = array(“ABC”, “DEF”, “IJK”, “LMN”, “OPQ”); $rand_keys = array_rand($input, 3); echo $input[$rand_keys[0]] . “\n”;...

Resolving Startup Error Message in Sun Solaris Operating system

Resolving Startup Error Message in Sun Solaris Operating system The boot block in Sun Solaris operating system is an area of the hard drive that stores information for loading an operating system. Corruption in...

System “do not boot after” Installing Solaris 10 Kernel Patch

System “do not boot after” Installing Solaris 10 Kernel Patch System “do not boot after” Installing Solaris 10 Kernel Patch Solaris 10 Kernel Patches are primarily installed to remove all the firmware problems and...

Solaris Tips : How to resolve BAD SUPERBLOCK

Solaris Tips : How to resolve BAD SUPERBLOCK Superblock in UNIX operating system consists of important information about the file system and behavior tuning parameters. Corruption in superblock mainly occurs due to file system...

IT Articles : Choosing Your First Linux Web Host

IT Articles : Choosing Your First Linux Web Host Choosing your first Web host is an important decision. You will, hopefully, have a long relationship with whatever host you choose. To make a decision,...