Tag: php

  • Usare ReactJS in WordPress

    Usare ReactJS in WordPress

    class react
        {
            
            public function __construct()
            {
                add_filter('script_loader_tag', array(&$this, 'add_babel_type'), 10, 3);
                add_action('wp_enqueue_scripts', array($this, 'load_scripts_styles'));
            }
    
            function load_scripts_styles()
            {
                wp_register_script('react', 'https://unpkg.com/react@16.9.0/umd/react.development.js', array(), "16.9.0");
                wp_register_script('react-dom', 'https://unpkg.com/react-dom@16/umd/react-dom.development.js', array('react'), "16");
                wp_register_script('babel', 'https://unpkg.com/@babel/standalone/babel.min.js', array('react'), "1");
                wp_register_script('react-jsx', plugin_dir_path(__FILE__) . 'includes/js/react.jsx', array('react'), "1.0");
                $this->load_assets();
            }
    
            public function load_assets()
            {
                wp_enqueue_script('react');
                wp_enqueue_script('react-dom');
                wp_enqueue_script('babel');
                wp_enqueue_script('react-jsx');
    
                $api_settings = array(
                    'security' => wp_create_nonce('mynonce'),
                );
    
                wp_localize_script('react-jsx', 'react_api_settings', $api_settings);
            }
    
            // Add "babel" type to script
            function add_babel_type($tag, $handle, $src)
            {
                if ($handle !== 'react-jsx') {
                    return $tag;
                }
    
                return '' . "\n";
            }
        }
    <div id="root_react"></div>
    
    <script type="text/babel">
        ReactDOM.render(<Test />, document.getElementById('root_react'));
    </script>
  • Formattare una data in nice date

    Formattare una data in nice date

    Come formattare una data in modo che appaia nel formato: “2 minuti fa”

    function nice_date($datetime, $full = false)
            {
                date_default_timezone_set("Europe/Rome");
    
                $time_ago = strtotime($datetime);
                $time_now = time();
                $now = new \DateTime('@' . $time_now);
                $ago = new \DateTime('@' . $time_ago);
                $diff = $now->diff($ago);
    
                $diff->w = floor($diff->d / 7);
                $diff->d -= $diff->w * 7;
    
                $string = array(
                    'y' => array('singolare' => 'anno', 'plurale' => 'anni'),
                    'm' => array('singolare' => 'mese', 'plurale' => 'mesi'),
                    'w' => array('singolare' => 'settimana', 'plurale' => 'settimane'),
                    'd' => array('singolare' => 'giorno', 'plurale' => 'giorni'),
                    'h' => array('singolare' => 'ora', 'plurale' => 'ore'),
                    'i' => array('singolare' => 'minuto', 'plurale' => 'minuti'),
                    's' => array('singolare' => 'secondo', 'plurale' => 'secondi'),
                );
    
                foreach ($string as $k => &$v) {
                    if ($diff->$k) {
                        if ($diff->$k > 1) {
                            //plurale
                            $v = $diff->$k . ' ' . $v['plurale'];
                        } else {
                            //singolare
                            $v = $diff->$k . ' ' . $v['singolare'];
                        }
                    } else {
                        unset($string[$k]);
                    }
                }
    
                //print_r($string);
                if (!$full) {
                    $string = array_slice($string, 0, 1);
                }
    
                if ($time_now > $time_ago) {
                    $ret = $string ? implode(', ', $string) . ' fa' : 'proprio adesso';
                } else {
                    $ret = $string ? 'tra ' . implode(', ', $string) . '' : 'proprio adesso';
                }
                return $ret;
            }
    
    $my_date = nice_date('2020-01-05 20:30');
    echo $my_date // 5 mesi fa
  • Inviare dati POST tramite curl

    Inviare dati POST tramite curl

    Come inviare dati in POST tramite curl ad un servizio remoto

    $post = array(
                'name'=>$name,
                'note'=>$note,
            );
    
            $url = 'https://urlremoteservice.xxx';
            $ch = curl_init();
    
            curl_setopt($ch, CURLOPT_URL, $url);
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
            if ($post !== false) {
                curl_setopt($ch, CURLOPT_POST, 1);
                curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($post));
            }
    
            $headers = array();
            $headers[] = 'Accept: */*';
            $headers[] = 'Content-Type: application/json';
            $headers[] = 'Cache-Control: no-cache';
            
            curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
            curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
            curl_setopt($ch, CURLOPT_HEADER, 1);
            //curl_setopt($ch, CURLOPT_FAILONERROR, 1);
    
            $result = curl_exec($ch);
            if (curl_errno($ch)) {
                echo 'Error (' . curl_errno($ch) . '):' . curl_error($ch);
            }
    
            $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
            $header_resp = substr($result, 0, $header_size);
            $body_resp = substr($result, $header_size);
            curl_close($ch);