What does a . (dot) do in PHP?

前端 未结 4 473
生来不讨喜
生来不讨喜 2020-12-01 09:21

What does the following command do in PHP?

. $string   // ($string is something which i declared in the program)
相关标签:
4条回答
  • 2020-12-01 09:31

    The output is displayed directly to the browser like as a given below

    . $string   // ($string is something which i declared in the program)
    
    0 讨论(0)
  • 2020-12-01 09:37

    On its own, that does nothing at all (it's not valid syntax). However, if you have something like this:

    <?php
    
    $string1 = "Hello ";
    $string2 = "world!";
    $string = $string1 . $string2;
    
    echo $string;
    
    ?>
    

    You will see Hello world!. The . is the string concatenation operator.

    0 讨论(0)
  • 2020-12-01 09:49

    Your statement would throw back an error.

    The "dot" is a string concatenator. That is, it helps you to combine strings together into another string.

    Example. $full = $part1 . $part2;

    Concerning getting started: That's a difficult question. PHP.NET will be your functional looking site. Google-ing just about anything on PHP will direct you there. I'd look at getting a localhost setup of PHP/MySQL/Apache. If you're on a Windows machine, you can get a WAMP server setup.

    http://www.wampserver.com/en/

    This will drastically speed up your development and testing time. Don't try to FTP everything up to a Web server, as this approach will waste away 10-15% of your working time. Work smart - work local.

    Find an existing project (Open Source) with a great community and just try to start something. For example, I recently created DogFriendlyOlrando.com based on WordPress. I was curious as to the abilities of WordPress. It was a fun little project and gave me a good understanding of WordPress' capabilities. You'll learn the most from just diving in and doing. Good luck!

    0 讨论(0)
  • 2020-12-01 09:56

    Taken alone, this is a syntax error. The dot . is the concatenation operator that converts its arguments to strings and concatenates them. For example,

    <?php
    $string = "x";
    $s = 42 . $string;
    // $s is now "42x"
    
    0 讨论(0)
提交回复
热议问题