summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorUrban Müller2024-06-10 18:40:43 +0200
committerUrban Müller2024-06-10 18:40:43 +0200
commit8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2 (patch)
tree6b58eab491f4f027c3db647c1111746271965cdc /README
parent5a51732fc8d845d4c0e308b6340d9f4e20aa6ff4 (diff)
downloaditools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.gz
itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.bz2
itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.zip
http: -> https:
Diffstat (limited to 'README')
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 134475a..44e32c1 100644
--- a/README
+++ b/README
@@ -11,7 +11,7 @@ tasks in PHP easier. It works in PHP 7.0 and up.
Our examples omit array() around function parameters and use dangling commas.
To get that, you can either use our just-in-time syntax converter or use
-our patch for PHP (see http://cschneid.com/php/ for info). To use the syntax
+our patch for PHP (see https://cschneid.com/php/ for info). To use the syntax
converter, see the chapter about it_auto_prepend.php below.
it_auto_prepend.php - ITools environment (optional)
@@ -45,7 +45,7 @@ Example:
head('title' => "welcome earth"),
body(
p('style' => "margin:1em",
- a('href' => U("http://google.com/search", 'q' => "Hello World"), "Hello World"),
+ a('href' => U("https://google.com/search", 'q' => "Hello World"), "Hello World"),
),
),
);
@@ -181,7 +181,7 @@ Helper functions dealing with URLs.
Example:
$filename = it_url::get_cache(
- 'url' => "http://static.php.net/www.php.net/images/php.gif",
+ 'url' => "https://static.php.net/www.php.net/images/php.gif",
'timeout' => 5,
'cachedir' => $_SERVER['DOCUMENT_ROOT'] . "/cache",
);