PHP.net redirect to english

redirects to English version of the documentation

As of 2018-04-18. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         PHP.net redirect to english
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  redirects to English version of the documentation
// @author       adamaru
// @match        http://php.net/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var changeLanguageForm = $('#changelang');
    if(!changeLanguageForm){
        return;
    }
    var changeLanguageSelect = changeLanguageForm.find('select');
    if(!changeLanguageSelect){
        return;
    }
    var selectedOption = changeLanguageSelect.children('option:selected');
    var selectedLanguage = selectedOption.text();
    if(selectedLanguage == 'English'){
        return;
    }
    var options = changeLanguageSelect.children('option');
    var englishOption = null;
    for(var i = 0; i < options.length; ++i){
        if($(options[i]).text() == 'English'){
            englishOption = $(options[i]);
            break;
        }
    }
    if(!englishOption){
        return;
    }
    var englishLanguageOptionValue = englishOption.val();
    changeLanguageSelect.val(englishLanguageOptionValue);
    changeLanguageForm.submit();
})();