zoukankan      html  css  js  c++  java
  • PHP基础2

    1. sprintf  Replace the percent (%) sign by a variable passed as an argument:

    http://www.w3schools.com/php/func_string_sprintf.asp

    <?php
    $number = 9;
    $str = "Beijing";
    $txt = sprintf("There are %u million bicycles in %s.",$number,$str);
    echo $txt;
    ?>

     2. global variable

    using global variable inside function

    <?php
    function echo_ip(){
        global $user_ip;
        $string = "your ip addr is ".$user_ip;
        echo $string;
    }
    echo_ip();
    ?>

     3. print_r

    Prints human-readable information about a variable

    <?php
    $string = 'this is a example string';
    $string_word_count = str_word_count($string,1);
    print_r($string_word_count);
    ?>

     4. str_word_count

      second parameter

        0: the number of words

        1: put words in array,

        2. put words in array, key is the position of the words in the string

    <?php
    $string = 'this is a example string';
    $string_word_count = str_word_count($string,1);
    print_r($string_word_count);
    ?>

     the function ignore other character, to not ignore certain character

    <?php
    $string = 'this is a example string , $ &';
    $string_word_count = str_word_count($string,1,',&');
    print_r($string_word_count);
    ?>

     5. string concatenation

    dot

    <?php
    $string1 ='apple '.'banana';
    $string2 =' pig';
    echo $string1.$string2;
    ?>
  • 相关阅读:
    Hive数据倾斜原因和解决办法(Data Skew)
    Hive简介
    SQL---公共表表达式(CTEs)
    SQL面试题---topN问题
    SQL---分页查询
    SQL---自连接(self join)
    SQL---关联子查询(correlated subquery)
    SQL---CASE表达式
    SQL查询语句执行顺序
    SQL---窗口函数(window function)
  • 原文地址:https://www.cnblogs.com/phoenix13suns/p/3604575.html
Copyright © 2011-2022 走看看