GithubHelp home page GithubHelp logo

meet-php's Introduction

Meet PHP

I usually use Clojure/ClojureScript, and have experience for Java(5,8), C++11 and JavaScript(ES6).

Now, I'm stating to learn PHP with 初めてのPHP(O'REILLY Japan).

Environment

$ php -v
PHP 7.2.15 (cli) (built: Feb  7 2019 20:10:03) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
    with Zend OPcache v7.2.15, Copyright (c) 1999-2018, by Zend Technologies

Launch build-in Web server

$ php -S localhost:8888
$ open localhost:8888
// First PHP code
<?php

print 'Hello, world!';

See http://localhost:8888

Notes for me

  • array() == []
  • array can use like map or list
  • implode(',', []) is like (str/join "," [])
  • explode(',", "...") is like (str/split "..." #",")
  • Use $GLOBALS or global keyword to access global variables in function
    • Mostly should use $GLOBALS
  • $GLOBALS is named super global
  • To add type definition:
    • function(string $x): int
  • To call static method:
    • ClassName::method_name()
  • Constructor name is __construct()
  • namespace declare: \A\B\C
  • use keyword use like this: use \A\B\C as X
  • list($a, $b) = array(1 2) is destructuring like (let [[a b] [1 2]])

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.