forked from phpversions/phpversions.info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 1.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<p>As a PHP developer, we are often stuck with hosts that support insanely old versions of PHP. This means that some projects end up supporting those insanely old versions, and we all get stuck in this "Mexican Standoff" situation.</p>
<p>Some developers force their requirements to be much higher than these default versions in a bid to force the hosting companies to upgrade, but in reality we just end up with people reducing their software to try and get it onto old servers.</p>
<table>
<thead>
<tr>
<th>Host</th>
<th>5.2</th>
<th>5.3</th>
<th>5.4</th>
<th>5.5</th>
<th>5.6</th>
<th>Default</th>
<th>Manual Upgrade</th>
<th>Auto Upgrade</th>
</tr>
</thead>
<tbody>
{% for host in site.data.hosts %}
<tr>
<td><a href="{{ host.url }}">{{ host.name }}</a></td>
<td>{% if host.php52 %}{{ host.php52 }}{% else %}-{% endif %}</td>
<td>{% if host.php53 %}{{ host.php53 }}{% else %}-{% endif %}</td>
<td>{% if host.php54 %}{{ host.php54 }}{% else %}-{% endif %}</td>
<td>{% if host.php55 %}{{ host.php55 }}{% else %}-{% endif %}</td>
<td>{% if host.php56 %}{{ host.php56 }}{% else %}-{% endif %}</td>
<td>{% if host.default %}{{ host.default }}{% else %}<em>???</em>{% endif %}</td>
<td>{% if host.manual_update %}{{ host.manual_update }}{% endif %}</td>
<td>{% if host.auto_update %}{{ host.auto_update }}{% endif %}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>