PHP Performance Analysis (001)-str_repeat ($input, $multiplier)

Source: Internet
Author: User

     Header"Pramga:no-cache");/** * Get hollow Pyramid:
* 1. Using memcpy and Memmove, the most efficient. * * @param number $levelNum * Pyramid layer: Default * @return string Pyramid results */ functiongetemptyjinzita($levelNum = ){$SPACE=" ";//For filling spaces$STAR="*";//For filling models$decreseSpace=$levelNum-1;//The first line begins with a space, decreasing by line$result=""; for($level=1;$level<=$levelNum; ++$level) {//loop outer number$result. = Str_repeat ($SPACE,$decreseSpace--);if($level>=1&&$level<$levelNum) {$result.=$STAR;$spaceNum= ($level-1) *2-1;$result. = Str_repeat ($SPACE,$spaceNum<0?0:$spaceNum);if($level!=1)//First line on one *$result.=$STAR; }Elseif($level==$levelNum) {//Bottom level needs to be filled full *$result. = Str_repeat ($STAR,$level*2-1); }$result.="
"; }return$result;}EchoGetemptyjinzita ();//Print Pyramid key content?>

The above describes the PHP performance Analysis (001)-str_repeat ($input, $multiplier), including aspects of the content, I hope to be interested in PHP tutorial friends helpful.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.