문제

Does anyone know where can I find recent data on PHP4 vs PHP5 "market share", that is, what percentage of servers on the Internet have PHP5 installed?

I found this but it's from 2008: http://www.nexen.net/chiffres_cles/phpversion/18824-php_statistics_for_october_2008.php

I also checked netcraft.com but I don't think they have something like that.

Thanks!

도움이 되었습니까?

해결책 2

필드 속성 CanBeDisplayedInEditForm를 시도 할 수 있다고 생각합니다.목록 필드를 루프하고 아래와 같이이 속성을 확인하십시오.

foreach (SPField field in list.Fields)
{
    if (field.CanBeDisplayedInEditForm)
    {

    }
}
.

업데이트
이 문제에 대한 쉬운 편도 솔루션을 갖는 것 같습니다.CanBeDisplayedInEditForm, ShowInNewForm 조건에서 if 등 필드 속성 조합을 사용 하여이 문제를 해결해야 할 수도 있습니다.

다른 팁

You can find up-to-date statistics in W3Techs: http://w3techs.com/technologies/details/pl-php/all/all Click on the versions to drill down.

GoPHP5 lists the web hosts and projects that support PHP 5.2+

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top