2017-02-02 11 views
1

私はPHPを使ってvb6で書かれたプロジェクトを開発しています。vb6 PHPでの中間関数

は、私は、文字列その後

選択としてVLSALESITEMIDという変数を持っています。 (VGID)

その後

VLSALESITEMID=VLSALESITEMID & VGID.field("SALESITEMID").Value & "," 

その後

VLSALESITEMID=Mid(VLSALESITEMID, 1, Len(VLSALESITEMID) -1). 

私はPHPにそれを翻訳したい、任意のヘルプ?

MID FUNCTION:

' Creates text string. 
Dim TestString As String = "Mid Function Demo" 
' Returns "Mid". 
Dim FirstWord As String = Mid(TestString, 1, 3) 
' Returns "Demo". 
Dim LastWord As String = Mid(TestString, 14, 4) 
' Returns "Function Demo". 
Dim MidWords As String = Mid(TestString, 5) 
+1

http://php.net/manual/en/function.substr.php –

+0

入手したLen関数は何ですか?あなたより –

+1

http://php.net/manual/en/function.strlen.php –

答えて

0

VB6 Mid関数は、PHPのsubstr機能と非常に似ています。

<?php 
// Creates text string. 
$TestString = 'Mid Function Demo'; 

// Returns "Mid". 
$FirstWord = substr($TestString, 0, 3); 

// Returns "Demo". 
$LastWord = substr($TestString, 13, 4); 

// Returns "Function Demo". 
$MidWords = substr($TestString, 4); 

echo 
'"', $FirstWord, '"<br />', "\n", 
'"', $LastWord, '"<br />', "\n", 
'"', $MidWords, '"'; 

の出力は以下となります。

"ミッド"
"デモ"
"機能デモ"

関連する問題