[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

PHPと資料に関するpmintのブックマーク (8)

  • PHP: session_start - Manual

    session_start (PHP 4, PHP 5, PHP 7, PHP 8) session_start — 新しいセッションを開始、あるいは既存のセッションを再開する session_start() は、セッションを作成します。 もしくは、リクエスト上で GET, POST またはクッキーにより渡されたセッション ID に基づき現在のセッションを復帰します。 session_start() がコールされたりセッションが自動的に開始したりするときに、 PHP はセッションの open ハンドラおよび read ハンドラをコールします。 このハンドラとしては、デフォルトで組み込まれている保存ハンドラの他に PHP 拡張モジュールで提供されているもの (SQLite や Memcached など) も使えます。また、自作のハンドラを session_set_save_handler()

    PHP: session_start - Manual
    pmint
    pmint 2024/06/27
    "read_and_close オプション"
  • PHP: Validate filters - Manual

    pmint
    pmint 2021/07/03
    filter_var()の第2引数
  • PHP: mb_split - Manual

    Getting Started Introduction A simple tutorial Language Reference Basic syntax Types Variables Constants Expressions Operators Control Structures Functions Classes and Objects Namespaces Enumerations Errors Exceptions Fibers Generators Attributes References Explained Predefined Variables Predefined Exceptions Predefined Interfaces and Classes Predefined Attributes Context options and parameters Su

    PHP: mb_split - Manual
    pmint
    pmint 2021/03/29
    むしろ"preg_split('/.../u', ..."
  • PHP: PHP 5.6.x における OpenSSL 関連の変更 - Manual

    ストリームラッパーが、SSL/TLS を使っている場合のピア証明書とホスト名の検証にデフォルトで対応 暗号化されたすべてのクライアントストリームで、ピア検証がデフォルトで有効になりました。 デフォルトでは、OpenSSL のデフォルト CA バンドルを使ってピア証明書を検証します。 たいていの場合は、正しい SSL 証明書を持つサーバーと通信するならこれを変更する必要はありません。 OpenSSL が、よく知られた CA バンドルを使うように設定されているからです。 デフォルトの CA バンドルを上書きすることもできます。 openssl.cafile あるいは openssl.capath を設定すればグローバルに変更でき、コンテキストオプション cafile あるいは capath を使えばリクエスト単位で変更できます。 一般的にはおすすめできませんが、 コンテキストオプション ver

    PHP: PHP 5.6.x における OpenSSL 関連の変更 - Manual
  • BEAR.Sunday Manual

    BEAR.Sunday Manual Getting started Introduction What is BEAR.Sunday ? Package organization Install new application new resource Frameworks Dependency Injection Framework Aspect Oriented Framework REST - Hypermedia Framework What's a REST ? Resource Client Resource Object Resource Renderer Resource Adapter Application Application Introduction Application Script Application Object Application Instan

    pmint
    pmint 2014/03/06
    PHPフレームワーク BEAR.Sunday 使い方とサンプル
  • PHP: 再帰的パターン - Manual

    With the (?R) item you can link only to the full pattern, because it quasi equals to (?0). You can not use anchors, asserts etc., and you can only check that string CONTAINS a valid hierarchy or not. This is wrong: ^\(((?>[^()]+)|(?R))*\)$ However, you can bracketing the full expression, and replace (?R) to the relative link (?-2). This make it reusable. So you can check complex expressions, for e

    PHP: 再帰的パターン - Manual
    pmint
    pmint 2012/10/01
    PHPの再帰的パターン (?R) について。ネストした括弧類のためのパターン。例以外の使い道が無さそうなパターン。
  • XREAでPEARをインストールするのにハマッタときのメモ -  

    携帯サイトを作るにあたり、PEARのNet_UserAgent_Mobileが使いたいなと思い、XREAにPEARをインストールしようとしたところでおおいにハマッタ。 めちゃくちゃ時間がかかったが結論としては、 「XREAではすごく簡単にPEARをインストールして使うことができる」 ということがわかった。 ただ、そんなことはただの一言も、どこにも説明されてなかったのでそこにたどり着くまでが・・、時間かかったなあ。。 前提 使いたいものがすでに入ってないか確認しよう♪ まず、XREAにはある程度の標準的なPEARライブラリはすでにインストール済みのようだ。 classcheck.php <?php require_once 'Mail.php'; var_dump(class_exists('Mail')); ?> たとえば上のようなファイルをXREAの任意のフォルダにアップして確認すると、

    XREAでPEARをインストールするのにハマッタときのメモ -  
  • PHP: macOS Monterey より前のバージョンにバンドルされている、PHP の使用法 - Manual

    パスに注意しましょう。将来 PHP をビルドする際には 上のファイルは移動するかコメントアウトする必要があります。 指定した拡張子 (例: .php .html および .inc が PHP でパースされるようにします。 以下のような行が httpd.conf にあれば (Mac Panther 以降にはあります)、 PHP を有効にするだけで .php ファイルが自動的に PHP で処理されます。 <IfModule mod_php5.c> # If php is turned on, we respect .php and .phps files. AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps # Since most users will want index.php

    PHP: macOS Monterey より前のバージョンにバンドルされている、PHP の使用法 - Manual
  • 1