This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Title | |
* | |
* Description | |
* Description | |
* Description | |
* | |
* @author Fabio |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$endupload = "up"; | |
class phpVimeo | |
{ | |
const API_REST_URL = 'http://vimeo.com/api/rest/v2'; | |
const API_AUTH_URL = 'http://vimeo.com/oauth/authorize'; | |
const API_ACCESS_TOKEN_URL = 'http://vimeo.com/oauth/access_token'; | |
const API_REQUEST_TOKEN_URL = 'http://vimeo.com/oauth/request_token'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Auth; | |
use Cake\Auth\BaseAuthenticate; | |
use Cake\Network\Request; | |
use Cake\Network\Response; | |
use Cake\Core\Configure; | |
use Cake\Event\Event; | |
use Cake\Network\Session; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
function make_request($url) { | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
$clientResponse = curl_exec($ch); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Bot PHP Telegram ver Curl | |
* Lebih Bersih | |
* Sample Sederhana untuk Ebook Edisi 3: Membuat Bot Sendiri Menggunakan PHP | |
* | |
* Dibuat oleh Hasanudin HS | |
* @hasanudinhs di Telegram dan Twitter | |
* Ebook live http://telegram.banghasan.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
BOT PENGANTAR | |
Materi EBOOK: Membuat Sendiri Bot Telegram dengan PHP | |
Ebook live http://telegram.banghasan.com/ | |
oleh: bang Hasan HS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once('attachment.class.php'); | |
/** | |
* Fast Mime Mail parser Class using PHP's MailParse Extension | |
* @author [email protected] | |
* @url http://www.fijiwebdesign.com/ | |
* @license http://creativecommons.org/licenses/by-sa/3.0/us/ | |
* @version $Id$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* DNS Server Class | |
* | |
* @author Jonathan Creasy <[email protected]> | |
* @version 0.1.0 | |
* @package Dns | |
* @subpackage Server | |
* @url http://www.phpclasses.org/browse/file/18217.html | |
* This code is released into the public domain. Feel free to use it and distribute it however you wish. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Let's define some important variables! | |
$logfile = "/var/log/dns_logger"; | |
$gateway = "10.1.1.40"; | |
$date_format = "n/j/Y H:i:s"; | |
// We are now going to start a UDP Socket Server | |
// This is going to listen on port 53, DNS | |
$socket = stream_socket_server("udp://$gateway:53", $errno, $errstr, STREAM_SERVER_BIND); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Uses https://github.com/Navarr/Sockets | |
use Navarr\Socket\Socket; | |
use Navarr\Socket\Server; | |
class WebServer extends Server | |
{ | |
protected $clientMap; |